| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <script src="../../resources/run-after-display.js"></script> | 5 <script src="../../resources/run-after-display.js"></script> |
| 6 <style type="text/css" media="screen"> | 6 <style type="text/css" media="screen"> |
| 7 body { | 7 body { |
| 8 height: 1500px; | 8 height: 1500px; |
| 9 margin: 0; | 9 margin: 0; |
| 10 } | 10 } |
| 11 | 11 |
| 12 #box { | 12 #box { |
| 13 height: 100px; | 13 height: 100px; |
| 14 width: 100px; | 14 width: 100px; |
| 15 background-color: blue; | 15 background-color: blue; |
| 16 } | 16 } |
| 17 | 17 |
| 18 .composited { | 18 .composited { |
| 19 -webkit-transform: translateZ(0); | 19 transform: translateZ(0); |
| 20 } | 20 } |
| 21 | 21 |
| 22 iframe { | 22 iframe { |
| 23 display: block; | 23 display: block; |
| 24 margin: 20px; | 24 margin: 20px; |
| 25 height: 200px; | 25 height: 200px; |
| 26 width: 280px; | 26 width: 280px; |
| 27 } | 27 } |
| 28 </style> | 28 </style> |
| 29 <script type="text/javascript" charset="utf-8"> | 29 <script type="text/javascript" charset="utf-8"> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 50 <div id="box"></div> | 50 <div id="box"></div> |
| 51 | 51 |
| 52 <!-- Tests that when the main document becomes composited, all iframes conta
ining | 52 <!-- Tests that when the main document becomes composited, all iframes conta
ining |
| 53 any composited content become composited --> | 53 any composited content become composited --> |
| 54 <iframe src="resources/intermediate-frame.html"></iframe> | 54 <iframe src="resources/intermediate-frame.html"></iframe> |
| 55 <iframe src="resources/intermediate-frame.html"></iframe> | 55 <iframe src="resources/intermediate-frame.html"></iframe> |
| 56 | 56 |
| 57 <pre id="layers">Layer tree appears here in DRT.</pre> | 57 <pre id="layers">Layer tree appears here in DRT.</pre> |
| 58 </body> | 58 </body> |
| 59 </html> | 59 </html> |
| OLD | NEW |