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

Side by Side Diff: LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-inheritance.html

Issue 23243002: Introduce XMLHttpRequestEventTarget IDL interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update event-target-in-prototype.html test case Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-inheritance-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link rel="help" href="http://www.w3.org/TR/2012/WD-XMLHttpRequest-20121206/#xml httprequesteventtarget">
5 <script src="../resources/js-test-pre.js"></script>
6 </head>
7 <body>
8 <script>
9 description("Checks the prototype chain of XMLHttpRequest / XMLHttpRequestUpload .");
10
11 function className(obj) {
12 return Object.prototype.toString.call(obj).slice(8, -1);
13 }
14
15 // XMLHttpRequest.
16 shouldBeEqualToString("XMLHttpRequest.__proto__.name", "XMLHttpRequestEventTarge t");
17 shouldBeEqualToString("XMLHttpRequest.prototype.__proto__.constructor.name", "XM LHttpRequestEventTarget");
18 shouldBeEqualToString("className(XMLHttpRequest.prototype.__proto__)", "XMLHttpR equestEventTargetPrototype");
19 shouldBe("XMLHttpRequest.prototype.__proto__.__proto__", "EventTarget.prototype" );
20
21 // XMLHttpRequestUpload.
22 shouldBeEqualToString("XMLHttpRequestUpload.__proto__.name", "XMLHttpRequestEven tTarget");
23 shouldBeEqualToString("XMLHttpRequestUpload.prototype.__proto__.constructor.name ", "XMLHttpRequestEventTarget");
24 shouldBeEqualToString("className(XMLHttpRequestUpload.prototype.__proto__)", "XM LHttpRequestEventTargetPrototype");
25 shouldBe("XMLHttpRequestUpload.prototype.__proto__.__proto__", "EventTarget.prot otype");
26 </script>
27 </body>
28 <script src="../resources/js-test-post.js"></script>
29 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-inheritance-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698