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

Side by Side Diff: LayoutTests/fast/dom/DOMURL/check-instanceof-domurl-functions.html

Issue 24066010: Implement URLUtils and URL interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: updates based on code review comments Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/fast/dom/DOMURL/check-instanceof-domurl-functions-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 <script src="../../js/resources/js-test-pre.js"></script>
5 </head>
6 <body>
7 <script>
8 description("Test instanceof functions and properties of URL and webkitURL.");
9
10 var url = new URL;
11
12 shouldBeTrue("'createObjectURL' in URL");
13 shouldBeTrue("'revokeObjectURL' in URL");
14
15 shouldBeUndefined("url.createObjectURL");
16 shouldBeUndefined("url.revokeObjectURL");
17
18 shouldBeDefined("window.URL.createObjectURL");
19 shouldBeDefined("window.URL.revokeObjectURL");
20
21 // Following tests remain valid until we actually deprecate webkitURL.
22 shouldBeTrue("'createObjectURL' in webkitURL");
23 shouldBeTrue("'revokeObjectURL' in webkitURL");
24 shouldBeDefined("window.webkitURL.createObjectURL");
25 shouldBeDefined("window.webkitURL.revokeObjectURL");
26
27 </script>
28 <script src="../../js/resources/js-test-post.js"></script>
29 </body>
30 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/DOMURL/check-instanceof-domurl-functions-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698