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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/WebIDL/ecmascript-binding/es-exceptions/exceptions-expected.txt

Issue 1993523002: Move the WebIDL directory from web-platform-tests/ to wpt/. (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 unified diff | Download patch
OLDNEW
1 This is a testharness.js-based test. 1 This is a testharness.js-based test.
2 PASS Object.getPrototypeOf(exception) === DOMException.prototype 2 PASS Object.getPrototypeOf(exception) === DOMException.prototype
3 FAIL exception.hasOwnProperty("name") assert_true: expected true got false 3 FAIL exception.hasOwnProperty("name") assert_true: expected true got false
4 PASS exception.name === "HierarchyRequestError" 4 PASS exception.name === "HierarchyRequestError"
5 FAIL Object.getOwnPropertyDescriptor(exception, "name") Cannot read property 'wr itable' of undefined 5 FAIL Object.getOwnPropertyDescriptor(exception, "name") Cannot read property 'wr itable' of undefined
6 PASS Object.getOwnPropertyDescriptor(exception, "message") 6 PASS Object.getOwnPropertyDescriptor(exception, "message")
7 FAIL typeof exception.message === "string" assert_equals: expected "" but got "F ailed to execute 'appendChild' on 'Node': The new child element contains the par ent." 7 FAIL typeof exception.message === "string" assert_equals: expected "" but got "F ailed to execute 'appendChild' on 'Node': The new child element contains the par ent."
8 PASS Object.prototype.toString.call(exception) === "[object DOMException]" 8 PASS Object.prototype.toString.call(exception) === "[object DOMException]"
9 PASS exception.code === DOMException.HIERARCHY_REQUEST_ERR 9 PASS exception.code === DOMException.HIERARCHY_REQUEST_ERR
10 FAIL Object.getOwnPropertyDescriptor(exception, "code") Cannot read property 'wr itable' of undefined 10 FAIL Object.getOwnPropertyDescriptor(exception, "code") Cannot read property 'wr itable' of undefined
11 PASS In iframe: Object.getPrototypeOf(exception) === DOMException.prototype 11 PASS In iframe: Object.getPrototypeOf(exception) === DOMException.prototype
12 FAIL In iframe: exception.hasOwnProperty("name") assert_true: expected true got false 12 FAIL In iframe: exception.hasOwnProperty("name") assert_true: expected true got false
13 PASS In iframe: exception.name === "HierarchyRequestError" 13 PASS In iframe: exception.name === "HierarchyRequestError"
14 FAIL In iframe: Object.getOwnPropertyDescriptor(exception, "name") Cannot read p roperty 'writable' of undefined 14 FAIL In iframe: Object.getOwnPropertyDescriptor(exception, "name") Cannot read p roperty 'writable' of undefined
15 PASS In iframe: Object.getOwnPropertyDescriptor(exception, "message") 15 PASS In iframe: Object.getOwnPropertyDescriptor(exception, "message")
16 FAIL In iframe: typeof exception.message === "string" assert_equals: expected "" but got "Failed to execute 'appendChild' on 'Node': The new child element conta ins the parent." 16 FAIL In iframe: typeof exception.message === "string" assert_equals: expected "" but got "Failed to execute 'appendChild' on 'Node': The new child element conta ins the parent."
17 PASS In iframe: Object.prototype.toString.call(exception) === "[object DOMExcept ion]" 17 PASS In iframe: Object.prototype.toString.call(exception) === "[object DOMExcept ion]"
18 PASS In iframe: exception.code === DOMException.HIERARCHY_REQUEST_ERR 18 PASS In iframe: exception.code === DOMException.HIERARCHY_REQUEST_ERR
19 FAIL In iframe: Object.getOwnPropertyDescriptor(exception, "code") Cannot read p roperty 'writable' of undefined 19 FAIL In iframe: Object.getOwnPropertyDescriptor(exception, "code") Cannot read p roperty 'writable' of undefined
20 Harness: the test ran to completion. 20 Harness: the test ran to completion.
21 21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698