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

Side by Side Diff: LayoutTests/fast/layers/layer-content-visibility-change.html

Issue 196573042: Remove display() from more layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove video-frame-size-change test 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 <div style="position: relative;"> 1 <div style="position: relative;">
2 <div style="width: 100px; height: 100px; background-color: red;"></div> 2 <div style="width: 100px; height: 100px; background-color: red;"></div>
3 <div style="visibility: hidden; position: absolute; top: 0;"> 3 <div style="visibility: hidden; position: absolute; top: 0;">
4 <div id="inner" style="width: 100px; height: 100px; background-color: gr een;"></div> 4 <div id="inner" style="width: 100px; height: 100px; background-color: gr een;"></div>
5 </div> 5 </div>
6 </div> 6 </div>
7 <script src="../../resources/run-after-display.js"></script>
7 <script> 8 <script>
8 function test() 9 if (window.testRunner)
9 { 10 testRunner.waitUntilDone();
11 runAfterDisplay(function() {
10 document.getElementById("inner").style.visibility = "visible"; 12 document.getElementById("inner").style.visibility = "visible";
11 } 13 if (window.testRunner)
12 if (window.testRunner) { 14 testRunner.notifyDone();
13 document.body.offsetTop; 15 });
14 testRunner.display();
15 test();
16 } else
17 setTimeout(test, 0);
18 </script> 16 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698