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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/multicol-repaint.html

Issue 2010243002: Remove paint/invalidation/spv2 (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
(Empty)
1 <!-- Based on fast/repaint/multicol-repaint.html -->
2 <!DOCTYPE html>
3
4 <html lang="en">
5 <head>
6 <style type="text/css" media="screen">
7
8 .container {
9 width: 400px;
10 height: 100px;
11 border: 1px solid black;
12 font-size: 50px;
13 -webkit-column-count: 2;
14 column-count: 2;
15 column-fill: auto;
16 }
17
18 </style>
19 <script src="resources/paint-invalidation-test.js" type="text/javascript"></sc ript>
20 <script type="text/javascript">
21 function paintInvalidationTest()
22 {
23 document.getElementById('a').innerHTML = 'XXXXXX';
24 }
25 </script>
26 </head>
27 <body onload="runPaintInvalidationTest();">
28
29 <div class="container">
30 &nbsp;<br>
31 <span id="a">x</span>
32 </div>
33 </body>
34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698