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

Side by Side Diff: LayoutTests/svg/text/nonconformant-content-crash-1.html

Issue 148343003: Tighten up the allowable-child criteria in RenderSVGInline (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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/svg/text/nonconformant-content-crash-1-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 <svg>
3 <text><tspan>PASS</tspan><tspan><a><ellipse/></a></tspan></text>
4 </svg>
5 <script>
6 if (window.testRunner) {
7 testRunner.dumpAsText();
8 testRunner.waitUntilDone();
9 }
10 window.onload = function() {
11 var e = document.querySelector('ellipse');
12 e.parentNode.insertBefore(document.createElement('span'), e);
13 }
14
15 window.onload = function() {
16 setTimeout(function() {
17 if (window.testRunner)
18 testRunner.notifyDone();
19 }, 0);
20 };
21 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/text/nonconformant-content-crash-1-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698