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

Unified Diff: LayoutTests/fast/dom/HTMLDocument/document-special-properties-expected.txt

Issue 1291723004: Remove all support for <applet> handling in Chrome. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 5 years, 4 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: LayoutTests/fast/dom/HTMLDocument/document-special-properties-expected.txt
diff --git a/LayoutTests/fast/dom/HTMLDocument/document-special-properties-expected.txt b/LayoutTests/fast/dom/HTMLDocument/document-special-properties-expected.txt
index 5d2d43433c071b13b8ed03e093e8e03f74f31919..499d39e5ebca9e6360a44da20c2ad4ea07b0d4ed 100644
--- a/LayoutTests/fast/dom/HTMLDocument/document-special-properties-expected.txt
+++ b/LayoutTests/fast/dom/HTMLDocument/document-special-properties-expected.txt
@@ -1,4 +1,4 @@
-This test covers the various ways of accessing DOM elements through the document object by name, id or index, directly as properties of the document object. This lookup is supposed to include applet, embed, form, image, object and iframe by name, but only applet and object by id. It should give the element itself in the case of a single match, or an HTMLCollection in the case of multiple matches; except that when exactly one item that is an iframe matches, it will give the window object for that iframe.
+This test covers the various ways of accessing DOM elements through the document object by name, id or index, directly as properties of the document object. This lookup is supposed to include embed, form, image, object and iframe by name, but only object by id. It should give the element itself in the case of a single match, or an HTMLCollection in the case of multiple matches; except that when exactly one item that is an iframe matches, it will give the window object for that iframe.
Our results match IE.
@@ -22,13 +22,6 @@ Form by id (unique): undefined
Form by id (multiple): undefined
Form by id/name mixed: collection(2) FORM(name) FORM(name)
-Nonexistent applet name: undefined
-Applet by name (unique): single APPLET(name)
-Applet by name (multiple): collection(2) APPLET(name) APPLET(name)
-Applet by id (unique): single APPLET(id)
-Applet by id (multiple): collection(2) APPLET(id) APPLET(id)
-Applet by id/name mixed: collection(4) APPLET(id) APPLET(name) APPLET(name) APPLET(id)
-
Nonexistent object name: undefined
Object by name (unique): single OBJECT(name)
Object by name (multiple): collection(2) OBJECT(name) OBJECT(name)
@@ -62,10 +55,10 @@ Span by id (unique): undefined
Span by id (multiple): undefined
Span by id/name mixed: undefined
-Mixed by id: collection(2) APPLET(id) OBJECT(id)
-Mixed by name: collection(6) IMG(name) FORM(name) APPLET(name) EMBED(name) OBJECT(name) IFRAME(name)
-Mixed by id (no iframe): collection(2) APPLET(id) OBJECT(id)
-Mixed by name (no iframe): collection(5) IMG(name) FORM(name) APPLET(name) EMBED(name) OBJECT(name)
+Mixed by id: single OBJECT(id)
+Mixed by name: collection(5) IMG(name) FORM(name) EMBED(name) OBJECT(name) IFRAME(name)
+Mixed by id (no iframe): single OBJECT(id)
+Mixed by name (no iframe): collection(4) IMG(name) FORM(name) EMBED(name) OBJECT(name)
Numeric 0: undefined
Numeric 12: undefined

Powered by Google App Engine
This is Rietveld 408576698