Commit 151d23f1 authored by Stephen McGruer's avatar Stephen McGruer Committed by Commit Bot

Upstream sticky-writing-mode-* to WPT

Bug: 699244
Change-Id: I83055b050cad7f85e8b235f40203d559d1f337aa
Reviewed-on: https://chromium-review.googlesource.com/600853Reviewed-by: default avatarRobert Flack <flackr@chromium.org>
Commit-Queue: Stephen McGruer <smcgruer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#492005}
parent 8846e970
<!DOCTYPE html>
<title>Reference for position:sticky constraints are independent of writing mode</title>
<style>
.group {
display: inline-block;
position: relative;
width: 180px;
height: 250px;
}
.scroller {
position: relative;
width: 130px;
height: 200px;
overflow: scroll;
font: 25px/1 Ahem;
}
.contents {
height: 500px;
width: 200px;
}
.indicator {
display: inline;
color: green;
position: relative;
}
</style>
<script>
window.addEventListener('load', function() {
document.getElementById('scroller1').scrollTop = 50;
document.getElementById('scroller1').scrollLeft = 20;
document.getElementById('scroller2').scrollTop = 50;
document.getElementById('scroller2').scrollLeft = 60;
});
</script>
<div class="group">
<div id="scroller1" class="scroller" style="writing-mode: vertical-lr;">
<div class="contents">
<div class="indicator" style="left: 40px; top: 100px;">XXX</div>
</div>
</div>
</div>
<div class="group">
<div id="scroller2" class="scroller" style="writing-mode: vertical-rl;">
<div class="contents">
<div class="indicator" style="right: 45px; top: 100px;">XXX</div>
</div>
</div>
</div>
<div>You should see two green blocks above. No red should be visible.</div>
<!DOCTYPE html>
<title>position:sticky constraints are independent of writing mode</title>
<link rel="match" href="position-sticky-writing-modes-ref.html" />
<link rel="help" href="https://www.w3.org/TR/css-position-3/#sticky-pos" />
<meta name="assert" content="This test checks that position:sticky constraints are independent of the writing mode" />
<style>
.group {
display: inline-block;
position: relative;
width: 180px;
height: 250px;
}
.scroller {
position: relative;
width: 130px;
height: 200px;
overflow: scroll;
font: 25px/1 Ahem;
}
.contents {
height: 500px;
width: 200px;
}
.indicator {
position: absolute;
color: red;
}
.sticky {
display: inline;
color: green;
position: sticky;
top: 50px;
}
</style>
<script>
window.addEventListener('load', function() {
document.getElementById('scroller1').scrollTop = 50;
document.getElementById('scroller1').scrollLeft = 20;
document.getElementById('scroller2').scrollTop = 50;
document.getElementById('scroller2').scrollLeft = 60;
});
</script>
<div class="group">
<div id="scroller1" class="scroller" style="writing-mode: vertical-lr;">
<div class="indicator" style="left: 40px; top: 100px;">XXX</div>
<div class="contents">
<div class="sticky" style="left: 20px;">XXX</div>
</div>
</div>
</div>
<div class="group">
<div id="scroller2" class="scroller" style="writing-mode: vertical-rl;">
<div class="contents">
<div class="indicator" style="left: 45px; top: 100px;">XXX</div>
<div class="sticky" style="right: 20px;">XXX</div>
</div>
</div>
</div>
<div>You should see two green blocks above. No red should be visible.</div>
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
width: 2000px;
overflow: hidden; /* hide scrollbars */
}
.group {
position: relative;
width: 500px;
height: 160px;
}
.container {
-webkit-writing-mode: vertical-lr;
width: 300px;
height: 160px;
border: 2px solid black;
margin: 10px;
position: relative;
}
.box {
width: 100px;
height: 100px;
margin: 5px;
}
.sticky {
position: absolute;
background-color: green;
}
</style>
</head>
<body>
<div class="group" style="left: -200px">
<div class="container">Before
<div class="box"></div> <!-- placeholder -->
<div class="sticky box" style="right: 0px;"></div>After
</div>
</div>
<div class="group" style="left: 300px">
<div class="container">Before
<div class="sticky box" style="position: relative;"></div>After
</div>
</div>
<div class="group" style="left: 700px">
<div class="container">Before
<div class="box"></div> <!-- placeholder -->
<div class="sticky box" style="left: 0px;"></div>After
</div>
</div>
</body>
</html>
<!DOCTYPE html>
<script>
if (window.internals) {
internals.settings.setCSSStickyPositionEnabled(true);
}
</script>
<html>
<head>
<style>
body {
margin: 0;
width: 2000px;
overflow: hidden; /* hide scrollbars */
}
.group {
position: relative;
width: 500px;
height: 160px;
}
.container {
-webkit-writing-mode: vertical-lr;
width: 300px;
height: 160px;
border: 2px solid black;
margin: 10px;
}
.box {
width: 200px;
height: 180px;
}
.sticky {
position: sticky;
background-color: green;
width: 100px;
height: 100px;
left: 20px;
right: 20px;
margin: 5px;
}
</style>
<script>
function doTest()
{
window.scrollTo(100, 0);
}
window.addEventListener('load', doTest, false);
</script>
</head>
<body>
<div class="group" style="left: -100px">
<div class="container">Before
<div class="sticky box"></div>After
</div>
</div>
<div class="group" style="left: 400px">
<div class="container">Before
<div class="sticky box"></div>After
</div>
</div>
<div class="group" style="left: 800px">
<div class="container">Before
<div class="sticky box"></div>After
</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
width: 2000px;
overflow: hidden; /* hide scrollbars */
}
.group {
position: relative;
width: 500px;
height: 160px;
}
.container {
-webkit-writing-mode: vertical-rl;
width: 300px;
height: 160px;
border: 2px solid black;
margin: 10px;
position: relative;
}
.box {
width: 100px;
height: 100px;
margin: 5px;
}
.sticky {
position: absolute;
background-color: green;
}
</style>
</head>
<body>
<div class="group" style="left: -200px">
<div class="container">Before
<div class="box"></div> <!-- placeholder -->
<div class="sticky box" style="right: 0px;"></div>After
</div>
</div>
<div class="group" style="left: 300px">
<div class="container">Before
<div class="sticky box" style="position: relative;"></div>After
</div>
</div>
<div class="group" style="left: 700px">
<div class="container">Before
<div class="box"></div> <!-- placeholder -->
<div class="sticky box" style="left: 0px;"></div>After
</div>
</div>
</body>
</html>
<!DOCTYPE html>
<script>
if (window.internals) {
internals.settings.setCSSStickyPositionEnabled(true);
}
</script>
<html>
<head>
<style>
body {
margin: 0;
width: 2000px;
overflow: hidden; /* hide scrollbars */
}
.group {
position: relative;
width: 500px;
height: 160px;
}
.container {
-webkit-writing-mode: vertical-rl;
width: 300px;
height: 160px;
border: 2px solid black;
margin: 10px;
}
.box {
width: 200px;
height: 180px;
}
.sticky {
position: sticky;
background-color: green;
width: 100px;
height: 100px;
left: 20px;
right: 20px;
margin: 5px;
}
</style>
<script>
function doTest()
{
window.scrollTo(100, 0);
}
window.addEventListener('load', doTest, false);
</script>
</head>
<body>
<div class="group" style="left: -100px">
<div class="container">Before
<div class="sticky box"></div>After
</div>
</div>
<div class="group" style="left: 400px">
<div class="container">Before
<div class="sticky box"></div>After
</div>
</div>
<div class="group" style="left: 800px">
<div class="container">Before
<div class="sticky box"></div>After
</div>
</div>
</body>
</html>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment