5 <style type=
"text/css" media=
"screen">
14 outline:
1px solid black;
27 background-color: red;
31 <script type=
"text/javascript" charset=
"utf-8">
32 // Scroll on load to test fixed positioning.
33 window.addEventListener('load', function() {
34 window.scrollTo(
0,
100);
40 <div class=
"indicator box" style=
"left: 50px; top: 200px;"></div>
41 <div class=
"indicator box" style=
"left: 250px; top: 200px;"></div>
43 <div class=
"transformed box" style=
"margin: 150px 50px;">
44 <div class=
"fixed box" style=
"background-color: green; margin-top: 50px;">
48 <div class=
"transformed fixed box" style=
"left: 250px; top: 50px;">
49 <div class=
"transformed box" style=
"margin-top: 50px; background-color: green;">
53 <p>Tests fixed position elements combined with transforms. You should see no red above.
</p>