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

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

Issue 1994373002: Convert some repaint tests into ref tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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: flex; 4 display: flex;
5 flex-flow: column; 5 flex-flow: column;
6 height: 300px; 6 height: 300px;
7 width: 200px; 7 width: 200px;
8 } 8 }
9 #left { 9 #left {
10 flex: 1; 10 flex: 1;
(...skipping 15 matching lines...) Expand all
26 // This test makes sure that we repaint the right region of a flexbox when 26 // This test makes sure that we repaint the right region of a flexbox when
27 // changing the flex values. Only the middle of the test page should be 27 // changing the flex values. Only the middle of the test page should be
28 // repainted. If the top of the test page (above the flexbox) is repainted, 28 // repainted. If the top of the test page (above the flexbox) is repainted,
29 // this test fails. 29 // this test fails.
30 function setFlex(value) 30 function setFlex(value)
31 { 31 {
32 document.getElementById("content").style.flex = value; 32 document.getElementById("content").style.flex = value;
33 } 33 }
34 34
35 window.testIsAsync = true; 35 window.testIsAsync = true;
36 window.onload = runRepaintTest; 36 window.onload = runRepaintAndPixelTest;
37 37
38 function repaintTest() { 38 function repaintTest() {
39 requestAnimationFrame(function() { 39 requestAnimationFrame(function() {
40 setFlex(4.6); 40 setFlex(4.6);
41 document.getElementById("content").offsetTop; 41 document.getElementById("content").offsetTop;
42 requestAnimationFrame(function() { 42 requestAnimationFrame(function() {
43 setFlex(5); 43 setFlex(5);
44 finishRepaintTest(); 44 finishRepaintTest();
45 }, 1) 45 }, 1)
46 }, 1) 46 }, 1)
47 }; 47 };
48 </script> 48 </script>
49 <div style="height: 60px"></div> 49 <div style="height: 60px"></div>
50 <div id="flexbox" dir="rtl"> 50 <div id="flexbox" dir="rtl">
51 <div id="left"></div> 51 <div id="left"></div>
52 <div id="content"><div></div></div> 52 <div id="content"><div></div></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698