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

Side by Side Diff: LayoutTests/fast/regions/mathml-crash.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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 <html>
2 <head>
3 <title>Test for MathML crash</title>
4 <script src="../../resources/js-test.js"></script>
5 <style>
6 #example-text {
7 -webkit-flow-into: example-text-flow;
8 padding: 0;
9 margin: 0;
10 }
11 .regions {
12 -webkit-flow-from: example-text-flow;
13 border: 1px solid black;
14 width: 200px;
15 height: 50px;
16 }
17 </style>
18 </head>
19 <body>
20 <div>
21 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=110686">110686</a>: [CSS Regions] Crash when MathML used in CSS Regions</p>
22 <p>This test PASSES if it does not CRASH or ASSERT.</p>
23 <div id="example-text">
24 <div>
25 <math>
26 <mrow>
27 <mn>2</mn>
28 <mo>+</mo>
29 <mn>4</mn>
30 </mrow>
31 </math>
32 </div>
33 </div>
34 <div class="regions"></div>
35 </div>
36 <script type="text/javascript">
37 if (window.testRunner)
38 testRunner.dumpAsText();
39 document.body.offsetTop;
40 if (window.testRunner)
41 document.getElementById("example-text").style.display = "none";
42 </script>
43 </body>
44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698