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

Side by Side Diff: LayoutTests/fast/multicol/span/generated-child-split-flow-crash.html

Issue 299373006: Move old multicol tests to a separate directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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 style="font-family: Ahem; -webkit-font-smoothing: none;">
3 <style>
4 #div1 {
5 -webkit-column-count: 2;
6 }
7 #span1:after
8 {
9 display: block;
10 content: counter(c);
11 color: green;
12 -webkit-column-span: all;
13 }
14 </style>
15 <div id="div1">
16 A<span id="span1" style="color: blue">B</span>C
17 </div>
18 <script>
19 function runTest()
20 {
21 span1 = document.getElementById('span1');
22 span1.style.display = 'block';
23 document.body.offsetTop;
24 document.body.style.zoom = 2;
25 }
26
27 window.onload = runTest;
28 </script>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698