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

Unified Diff: third_party/WebKit/LayoutTests/editing/apply-inline-style-to-element-with-no-renderer-crash.html

Issue 1604163002: Make apply-inline-style-to-element-with-no-renderer-crash.html to use w3c test harness (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 2016-01-20T18:25:00 Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/execCommand/apply-inline-style-to-element-with-no-renderer-crash.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/editing/apply-inline-style-to-element-with-no-renderer-crash.html
diff --git a/third_party/WebKit/LayoutTests/editing/apply-inline-style-to-element-with-no-renderer-crash.html b/third_party/WebKit/LayoutTests/editing/apply-inline-style-to-element-with-no-renderer-crash.html
deleted file mode 100644
index 30cfc71074a0637ab70d0fa593c3b0923f4dea3e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/editing/apply-inline-style-to-element-with-no-renderer-crash.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<script>
-// crbug.com/339185: If we create an anchor element using execCommand('CreateLink') in an SVG namespace it won't get a renderer because the command will create
-// an HTML rather than an SVG anchor. Our subsequent attempt to apply an inline style on the should fail rather than result in a crash.
-onload = function() {
- tspan = document.getElementById("tspan");
- tspan2 = document.getElementById("tspan2");
- textPath = document.getElementById("textPath");
-
- colorprofile = document.createElementNS('http://www.w3.org/2000/svg', 'color_profile');
- li = document.createElement('li');
- colorprofile.appendChild(li);
- document.implementation.createDocument('' ,'' ,null).adoptNode(colorprofile)
-
- input=document.createElement('input');
- textPath.parentNode.insertBefore(input, textPath);
- window.getSelection().setBaseAndExtent(input, 4);
-
- document.designMode='on';
- document.execCommand('Transpose');
- document.execCommand('selectall');
- document.execCommand('CreateLink', 0, '#');
- document.execCommand('CreateLink', 0, '#');
- document.execCommand('Undo');
- document.designMode='off'
- document.execCommand('Undo');
- document.execCommand('Undo');
- document.designMode='on';
- document.execCommand('italic');
-}
-</script>
-<svg>
- <text>
- <tspan id="tspan">
- <tspan id="tspan2">%uef5f%u9776%u638a</tspan>
- <textPath id="textPath"></textPath>
- </tspan>
- </text>
-</svg>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/execCommand/apply-inline-style-to-element-with-no-renderer-crash.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698