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

Unified Diff: third_party/WebKit/LayoutTests/svg/dom/tabindex-focus.html

Issue 2782583002: Deduplicate testharness test names in LayoutTests/svg/ (Closed)
Patch Set: 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/dom/tabindex-focus.html
diff --git a/third_party/WebKit/LayoutTests/svg/dom/tabindex-focus.html b/third_party/WebKit/LayoutTests/svg/dom/tabindex-focus.html
index f80ce72d29c776467448d0e11b5ec452cde6c35d..7f07921256267e5157e84aa94d241c11614b04a2 100644
--- a/third_party/WebKit/LayoutTests/svg/dom/tabindex-focus.html
+++ b/third_party/WebKit/LayoutTests/svg/dom/tabindex-focus.html
@@ -185,7 +185,7 @@ while(element) {
finally {
document.body.focus();
}
- }, element.firstElementChild.nodeName + ".focus() without tabindex set.");
+ }, element.firstElementChild.nodeName + ".focus() without tabindex set (as text child.)");
test(function() {
try {
element.firstElementChild.setAttribute("tabindex", "1");
@@ -196,7 +196,7 @@ while(element) {
finally {
document.body.focus();
}
- }, element.firstElementChild.nodeName + ".focus() with tabindex set.");
+ }, element.firstElementChild.nodeName + ".focus() with tabindex set (as text child.)");
element.parentNode.removeChild(element);
element = svg.firstElementChild;

Powered by Google App Engine
This is Rietveld 408576698