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

Side by Side Diff: LayoutTests/css3/flexbox/repaint-rtl-column.html

Issue 644093003: NOP refactor to make various layout tests use setTimeout 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 #flexbox { 3 #flexbox {
4 display: -webkit-flex; 4 display: -webkit-flex;
5 -webkit-flex-flow: column; 5 -webkit-flex-flow: column;
6 height: 300px; 6 height: 300px;
7 width: 200px; 7 width: 200px;
8 } 8 }
9 #left { 9 #left {
10 -webkit-flex: 1; 10 -webkit-flex: 1;
(...skipping 18 matching lines...) Expand all
29 // this test fails. 29 // this test fails.
30 function setFlex(value) 30 function setFlex(value)
31 { 31 {
32 document.getElementById("content").style.webkitFlex = value; 32 document.getElementById("content").style.webkitFlex = value;
33 } 33 }
34 34
35 window.testIsAsync = true; 35 window.testIsAsync = true;
36 window.onload = runRepaintTest; 36 window.onload = runRepaintTest;
37 37
38 function repaintTest() { 38 function repaintTest() {
39 // FIXME: we need a better way of waiting for layout/repainting to happen
39 setTimeout(function() { 40 setTimeout(function() {
40 setFlex(4.6); 41 setFlex(4.6);
41 setTimeout(function() { 42 setTimeout(function() {
42 setFlex(5); 43 setFlex(5);
43 finishRepaintTest(); 44 finishRepaintTest();
44 }) 45 }, 1)
45 }) 46 }, 1)
46 }; 47 };
47 </script> 48 </script>
48 <div style="height: 60px"></div> 49 <div style="height: 60px"></div>
49 <div id="flexbox" dir="rtl"> 50 <div id="flexbox" dir="rtl">
50 <div id="left"></div> 51 <div id="left"></div>
51 <div id="content"><div></div></div> 52 <div id="content"><div></div></div>
OLDNEW
« no previous file with comments | « LayoutTests/css3/flexbox/repaint.html ('k') | LayoutTests/fast/css/font-face-css-change-while-loading.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698