Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Side by Side Diff: LayoutTests/compositing/iframes/fixed-position-element-in-iframe-enters-viewport-expected.html

Issue 196653012: Remove display() from compositing/ LayoutTests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: softwarecompositing expectations Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 #iframe-containing-fixed-position-element { 5 #iframe-containing-fixed-position-element {
6 background: green; 6 background: green;
7 width: 100px; 7 width: 100px;
8 height: 100px; 8 height: 100px;
9 } 9 }
10 </style> 10 </style>
11 <script>
12 if (window.testRunner)
13 testRunner.waitUntilDone();
14
15 function runTest()
16 {
17 if (window.testRunner) {
18 testRunner.display();
19 testRunner.notifyDone();
20 }
21 }
22 </script>
23 </head> 11 </head>
24 <body onload="runTest()"> 12 <body>
25 <div id="iframe-containing-fixed-position-element"></div> 13 <div id="iframe-containing-fixed-position-element"></div>
26 </body> 14 </body>
27 </html> 15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698