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

Unified Diff: LayoutTests/svg/custom/bug86781.html

Issue 1167033002: Remove layout tests that run execCommand on non-HTML documents (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix doctype Created 5 years, 6 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 | « LayoutTests/svg/custom/bug86392-expected.txt ('k') | LayoutTests/svg/custom/bug86781-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/svg/custom/bug86781.html
diff --git a/LayoutTests/svg/custom/bug86781.html b/LayoutTests/svg/custom/bug86781.html
deleted file mode 100644
index a76efcd91b18152b9d49409ad70e3f9e6812b258..0000000000000000000000000000000000000000
--- a/LayoutTests/svg/custom/bug86781.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<html>
-<head>
-</head>
-<body>
-<svg width="100" height="200">
- <g>
- <text y="20"><tspan id="tspan">PASS</tspan></text>
- </g>
- <br>
-<script>
-if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
-}
-document.execCommand("SelectAll");
-function remove_tspan() {
-var elem = document.getElementById("tspan");
-for (i=0;i<elem.childNodes.length;i++) {
- elem.parentNode.appendChild(elem.childNodes[i]);
-}
-elem.parentNode.removeChild(elem);
-}
-remove_tspan();
-var head = document.getElementsByTagName("head")[0];
-var style = document.createElement("style");
-style.type = "text/css";
-style.innerHTML="* { \n\
--webkit-animation-name: name; \n\
--webkit-animation-duration: 0.01s; \n\
-} \n\
-@-webkit-keyframes name { \n\
- from { \n\
- -webkit-column-rule-color: #7e4e51; \n\
- } \n\
- to { \n\
- -webkit-column-rule-color: rgb(19,55,215); \n\
- } \n\
-} \n\
-";
-head.appendChild(style);
-
-if (window.testRunner)
- setTimeout("testRunner.notifyDone()", 50);
-</script>
-</svg>
-</body>
-</html>
« no previous file with comments | « LayoutTests/svg/custom/bug86392-expected.txt ('k') | LayoutTests/svg/custom/bug86781-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698