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

Unified Diff: third_party/WebKit/LayoutTests/svg/custom/text-use-click-crash.xhtml

Issue 2741463002: Remove SVGTests.requiredFeatures attribute
Patch Set: rebase Created 3 years, 9 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
Index: third_party/WebKit/LayoutTests/svg/custom/text-use-click-crash.xhtml
diff --git a/third_party/WebKit/LayoutTests/svg/custom/text-use-click-crash.xhtml b/third_party/WebKit/LayoutTests/svg/custom/text-use-click-crash.xhtml
deleted file mode 100644
index 9313144e2f4ed2a382313dd13c30b4024c1173ac..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/svg/custom/text-use-click-crash.xhtml
+++ /dev/null
@@ -1,33 +0,0 @@
-<html xmlns="http://www.w3.org/1999/xhtml">
fs 2017/03/23 16:55:43 I don't see a need to remove this test.
-<body>
-<svg viewBox="0 0 480 360" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
- <text font-size="58em" id="target">XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX</text>
- <use xlink:href="#target"></use>
-</svg>
-<script><![CDATA[
-if (window.testRunner) {
- testRunner.waitUntilDone();
- testRunner.dumpAsText();
-}
-
-function keyDownMouseClick(x1, y1, x2, y2)
-{
- if (!window.eventSender)
- return;
- eventSender.mouseMoveTo(x1, y1);
- eventSender.mouseDown();
- eventSender.mouseMoveTo(x2, y2);
- eventSender.mouseUp();
-}
-
-target = document.getElementById("target");
-keyDownMouseClick(266, 322, 0, 0);
-target.setAttribute("requiredFeatures", "unknown_feature");
-keyDownMouseClick(226, 322, 0, 0);
-
-document.body.innerHTML = "PASS";
-testRunner.notifyDone();
-
-]]></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698