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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/html/dom/documents/dom-tree-accessors/document.forms.html

Issue 2382173004: Import wpt@1f1ed355979d2d51c4d93bda34145b2064bdd05a (Closed)
Patch Set: Modify TestExpectations or download new baselines for tests. Created 4 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/imported/wpt/html/dom/documents/dom-tree-accessors/document.forms-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/imported/wpt/html/dom/documents/dom-tree-accessors/document.forms.html
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/html/dom/documents/dom-tree-accessors/document.forms.html b/third_party/WebKit/LayoutTests/imported/wpt/html/dom/documents/dom-tree-accessors/document.forms.html
index 3bb89f498c14c40281904854d144af08e93e7f6d..e0689c7c7997354bc6cd5c0a9aaedaec4a5c6ce2 100644
--- a/third_party/WebKit/LayoutTests/imported/wpt/html/dom/documents/dom-tree-accessors/document.forms.html
+++ b/third_party/WebKit/LayoutTests/imported/wpt/html/dom/documents/dom-tree-accessors/document.forms.html
@@ -56,11 +56,11 @@ test(function() {
// http://heycam.github.io/webidl/#property-enumeration
// If the object supports indexed properties, then the object’s supported
// property indices are enumerated first, in numerical order.
- assert_array_equals(result.splice(0, 2), ["0", "1", "2"]);
+ assert_array_equals(result.splice(0, 3), ["0", "1", "2"]);
// [...]
// Finally, any enumerable own properties or properties from the object’s
// prototype chain are then enumerated, in no defined order.
- assert_array_equals(result.sort(), ["0", "1", "2", "item", "namedItem", "length"].sort())
+ assert_array_equals(result.sort(), ["item", "namedItem", "length"].sort())
}, "document.forms iteration")
test(function() {
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/imported/wpt/html/dom/documents/dom-tree-accessors/document.forms-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698