Chromium Code Reviews

Side by Side Diff: LayoutTests/fast/multicol/old/recursive-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.
Jump to:
View unified diff |
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 Bug 101984: Heap-buffer-overflow in WebCore::RenderBlock::clone.<br /> 3 Bug 101984: Heap-buffer-overflow in WebCore::RenderBlock::clone.<br />
4 Test passes if it does not crash. 4 Test passes if it does not crash.
5 <body> 5 <body>
6 <table> 6 <table>
7 <div class="container"> 7 <div class="container">
8 <div class="testClass" id="test1"> 8 <div class="testClass" id="test1">
9 </div> 9 </div>
10 <div class="testClass"> 10 <div class="testClass">
(...skipping 13 matching lines...)
24 var test2 = document.getElementById("test2"); 24 var test2 = document.getElementById("test2");
25 25
26 26
27 document.execCommand("SelectAll", true); 27 document.execCommand("SelectAll", true);
28 styleSheet0.insertRule('.testClass { -webkit-column-span: all ; }', 0); 28 styleSheet0.insertRule('.testClass { -webkit-column-span: all ; }', 0);
29 test1.appendChild(test2); 29 test1.appendChild(test2);
30 styleSheet0.insertRule('.testClass::first-letter { border-style: none; }', 0); 30 styleSheet0.insertRule('.testClass::first-letter { border-style: none; }', 0);
31 </script> 31 </script>
32 </body> 32 </body>
33 </html> 33 </html>
OLDNEW

Powered by Google App Engine