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

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/no-caret-repaint-in-non-content-editable-element-as-text.html

Issue 2010243002: Remove paint/invalidation/spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/paint/invalidation/spv2/no-caret-repaint-in-non-content-editable-element-as-text.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/no-caret-repaint-in-non-content-editable-element-as-text.html b/third_party/WebKit/LayoutTests/paint/invalidation/spv2/no-caret-repaint-in-non-content-editable-element-as-text.html
deleted file mode 100644
index 46b1c615676c12fdcd5eae64d6b887da15b29c39..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/no-caret-repaint-in-non-content-editable-element-as-text.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!-- Based on fast/repaint/no-caret-repaint-in-non-content-editable-element.html -->
-<html>
-<head>
-<script src="resources/paint-invalidation-test.js"></script>
-<script>
-if (window.testRunner) {
- testRunner.dumpAsText();
- // By definition, when caret browsing is enabled we always paint the caret.
- // So, this test is only applicable when caret browsing is disabled because
- // non-content-editable elements won't cause the caret to be drawn since they
- // are not editable.
- testRunner.overridePreference("WebKitEnableCaretBrowsing", false);
-}
-function paintInvalidationTest()
-{
- if (!window.eventSender)
- return;
-
- var target = document.getElementById("target");
- eventSender.mouseMoveTo(target.offsetLeft, target.offsetTop);
- eventSender.mouseDown();
- eventSender.mouseUp();
-}
-window.onload = runPaintInvalidationTest;
-</script>
-</head>
-<body>
- <p>This tests that clicking on a non-content editable element does not cause a repaint of it in whole or in part.</p>
- <p id="target">This element is not content editable.</p>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698