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

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/text-match-highlight.html

Issue 1366763002: Text expectations of paint/invalidation/spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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/text-match-highlight.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/text-match-highlight.html b/third_party/WebKit/LayoutTests/paint/invalidation/spv2/text-match-highlight.html
index f3427816b21a04b5c845db0ea6fd54b709a0ac2e..1a0ff10ec986cc83e986a4d59e01accc00788740 100644
--- a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/text-match-highlight.html
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/spv2/text-match-highlight.html
@@ -2,9 +2,6 @@
<!DOCTYPE HTML>
<script src="resources/paint-invalidation-test.js"></script>
<script>
-if (window.testRunner)
- testRunner.dumpAsTextWithPixelResults();
-
function highlightRange(id, start, end, active) {
var range = document.createRange();
var elem = document.getElementById(id).firstChild;
@@ -12,24 +9,6 @@ function highlightRange(id, start, end, active) {
range.setEnd(elem, end);
internals.addTextMatchMarker(range, active);
}
-window.expectedPaintInvalidationObjects = [
- "LayoutText #text",
- "InlineTextBox 'findme'",
- "LayoutText #text",
- "InlineTextBox 'findme'",
- "LayoutText #text",
- "InlineTextBox 'findme'",
- "LayoutText #text",
- "InlineTextBox 'findme'",
- "LayoutText #text",
- "InlineTextBox 'findme'",
- "LayoutSVGInlineText #text",
- "InlineTextBox 'Can you findme in this boring text?'",
- "LayoutSVGInlineText #text",
- "InlineTextBox 'Findme in a typewriter!'",
- "LayoutSVGInlineText #text",
- "InlineTextBox 'Findme on a path! Did you findme?'",
-];
function paintInvalidationTest() {
highlightRange('1', 0, 6, false);
highlightRange('2', 0, 6, false);

Powered by Google App Engine
This is Rietveld 408576698