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

Side by Side Diff: LayoutTests/fast/multicol/change-column-rule.html

Issue 834653003: [Slimming paint] [New Multicolumn] Repaint column rules when they change. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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 <p>The rules below should be green.</p>
3 <p>Click to test if testing manually.</p>
4 <div id="mc" style="-webkit-columns:3; line-height:100px; -webkit-column-rule:so lid yellow;">
5 <br>
6 <br>
7 <br>
8 </div>
9 <script>
10 if (window.testRunner)
11 testRunner.waitUntilDone();
12 onclick = foo;
13 onload = function() {
14 if (window.internals)
15 setTimeout(foo, 1000);
mstensho (USE GERRIT) 2015/01/15 13:31:51 This test is broken. Even with this silly timeout,
mstensho (USE GERRIT) 2015/01/15 14:09:54 With some suggestions from Rune, we found a way to
16 }
17 function foo() {
18 document.getElementById('mc').style.webkitColumnRuleColor = 'green';
19 if (window.testRunner)
20 testRunner.notifyDone();
21 }
22 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/change-column-rule-expected.html » ('j') | Source/core/rendering/RenderBlockFlow.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698