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

Side by Side Diff: LayoutTests/fast/multicol/paginated-layer-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, 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 <style>
2 .section {
3 position: absolute;
4 -webkit-column-count: 2;
5 }
6
7 .graph {
8 overflow: hidden;
9 }
10
11 .img {
12 position: relative;
13 width: 180px;
14 }
15 </style>
16 <p>
17 Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=48983">https:// bugs.webkit.org/show_bug.cgi?id=48983</a>
18 REGRESSION: multicol crashes with positioned elements</i>.
19 </p>
20 <p>
21 This test should not cause a crash.
22 </p>
23 <div class="section">
24 <div class="graph">
25 <div class="img"></div>
26 </div>
27 </div>
28 <script>
29 if (window.testRunner)
30 testRunner.dumpAsText();
31 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698