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

Side by Side Diff: LayoutTests/svg/text/nonconformant-content-crash-2.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
OLDNEW
(Empty)
1 <!doctype html>
2 <svg xmlns="http://www.w3.org/2000/svg">
3 <text><tspan><tspan>PASS</tspan></tspan><a></a></text>
4 </svg>
5 <script>
6 if (window.testRunner) {
7 testRunner.dumpAsText();
8 testRunner.waitUntilDone();
9 }
10 var e = document.querySelector('a');
11 e.appendChild(document.createElement('rb'));
12
13 window.onload = function() {
14 setTimeout(function() {
15 if (window.testRunner)
16 testRunner.notifyDone();
17 }, 0);
18 };
19 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698