OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 | 2 |
3 <!-- READ BEFORE UPDATING: | 3 <!-- READ BEFORE UPDATING: |
4 If this test is updated make sure to increment the "revision" value of the | 4 If this test is updated make sure to increment the "revision" value of the |
5 associated test in content/test/gpu/page_sets/pixel_tests.py. This will ensure | 5 associated test in content/test/gpu/page_sets/pixel_tests.py. This will ensure |
6 that the baseline images are regenerated on the next run. | 6 that the baseline images are regenerated on the next run. |
7 --> | 7 --> |
8 | 8 |
9 <html> | 9 <html> |
10 <head> | 10 <head> |
11 <meta name="viewport" content="initial-scale=1"> | |
12 <title>CSS 3D Test: Projected Blue Box over Black Background</title> | 11 <title>CSS 3D Test: Projected Blue Box over Black Background</title> |
13 <style type="text/css"> | 12 <style type="text/css"> |
14 #container { | 13 #container { |
15 -webkit-perspective: 500; | 14 -webkit-perspective: 500; |
16 } | 15 } |
17 | 16 |
18 #container > div { | 17 #container > div { |
19 position: relative; | 18 position: relative; |
20 margin: 50px; | 19 margin: 50px; |
21 width: 125px; | 20 width: 125px; |
(...skipping 27 matching lines...) Expand all Loading... |
49 </script> | 48 </script> |
50 </head> | 49 </head> |
51 <body onload="main()"> | 50 <body onload="main()"> |
52 <div style="position:relative; width:200px; height:200px; background-color:black
; zindex-0"> | 51 <div style="position:relative; width:200px; height:200px; background-color:black
; zindex-0"> |
53 </div> | 52 </div> |
54 <div id="container" style="position:absolute; top:0px; left:0px"> | 53 <div id="container" style="position:absolute; top:0px; left:0px"> |
55 <div id="blue_box"></div> | 54 <div id="blue_box"></div> |
56 </div> | 55 </div> |
57 </body> | 56 </body> |
58 </html> | 57 </html> |
OLD | NEW |