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

Side by Side Diff: LayoutTests/mathml/mo-stretch-crash.html

Issue 11784026: Revert 137759 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1312/
Patch Set: Created 7 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
« no previous file with comments | « no previous file | LayoutTests/mathml/mo-stretch-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <q id=quote></q>
3 <dd id=dd>
4 <body id=body>
5 <style>
6 dd, q, mfenced, div {
7 width: 7px;
8 overflow-y: auto;
9 padding-left: 100%;
10 }
11 </style>
12 <script>
13 if (window.testRunner)
14 testRunner.dumpAsText();
15
16 body.contentEditable = "true";
17 function crash() {
18 mfenced = document.createElementNS("http://www.w3.org/1998/Math/Math ML", "mfenced");
19 div = document.createElement("div");
20 mfenced.appendChild(div);
21 dd.appendChild(mfenced);
22 body.style.display = "-webkit-flex";
23 div.appendChild(quote);
24 }
25 window.addEventListener("load", crash, false);
26 </script>
27
28 This test passes if it does not crash.
29 </body>
30 </dd>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/mathml/mo-stretch-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698