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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/flexbox/repaint-during-resize-no-flex.html

Issue 2321183002: Move repaint tests (except for svg/) to paint/invalidation (Closed)
Patch Set: - Created 4 years, 3 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link rel="stylesheet" href="resources/flexbox.css">
5 <script src="../../fast/repaint/resources/text-based-repaint.js"></script>
6 <style>
7 body {
8 margin: 0;
9 }
10 .flexbox {
11 background: #333;
12 }
13 .flex-item {
14 height: 50px;
15 margin: 20px;
16 background: #eee;
17 width: 10px;
18 }
19
20 .width {
21 width:50px;
22 }
23 </style>
24 </head>
25 <body>
26 <div class="flexbox">
27 <div id="flex-item-1" class="flex-item"></div>
28 <div class="flex-item"></div>
29 <div class="flex-item"></div>
30 </div>
31 <script>
32 function repaintTest() {
33 var div = document.getElementById("flex-item-1");
34 div.classList.add("width");
35 }
36 window.onload = function() {
37 if (!window.testRunner) {
38 document.body.appendChild(document.createTextNode(
39 "Tests to make sure that when changing the size of one flex item cha nges the "
40 + "location of another flex item, we properly repaint. The repaint r ect should "
41 + "include the three flex items."));
42 }
43 window.enablePixelTesting = true;
44 runRepaintTest();
45 };
46 </script>
47 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698