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

Side by Side Diff: LayoutTests/dom/html/level2/html/HTMLAppletElement05.js

Issue 64173002: Align HTMLAppletElement IDL with spec (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: drop logging Created 7 years, 1 month 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
« no previous file with comments | « no previous file | LayoutTests/dom/html/level2/html/HTMLAppletElement11.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 Copyright © 2001-2004 World Wide Web Consortium, 3 Copyright © 2001-2004 World Wide Web Consortium,
4 (Massachusetts Institute of Technology, European Research Consortium 4 (Massachusetts Institute of Technology, European Research Consortium
5 for Informatics and Mathematics, Keio University). All 5 for Informatics and Mathematics, Keio University). All
6 Rights Reserved. This work is distributed under the W3C® Software License [1] i n the 6 Rights Reserved. This work is distributed under the W3C® Software License [1] i n the
7 hope that it will be useful, but WITHOUT ANY WARRANTY; without even 7 hope that it will be useful, but WITHOUT ANY WARRANTY; without even
8 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 8 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9 9
10 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 10 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 var docRef = null; 94 var docRef = null;
95 if (typeof(this.doc) != 'undefined') { 95 if (typeof(this.doc) != 'undefined') {
96 docRef = this.doc; 96 docRef = this.doc;
97 } 97 }
98 doc = load(docRef, "doc", "applet"); 98 doc = load(docRef, "doc", "applet");
99 nodeList = doc.getElementsByTagName("applet"); 99 nodeList = doc.getElementsByTagName("applet");
100 assertSize("Asize",1,nodeList); 100 assertSize("Asize",1,nodeList);
101 testNode = nodeList.item(0); 101 testNode = nodeList.item(0);
102 vcodebase = testNode.codeBase; 102 vcodebase = testNode.codeBase;
103 103
104 assertEquals("codebase","applets",vcodebase); 104 assertURIEquals("codebase",null,null,null,"applets",null,null,null,null,vc odebase);
105 105
106 } 106 }
107 107
108 108
109 109
110 110
111 function runTest() { 111 function runTest() {
112 HTMLAppletElement05(); 112 HTMLAppletElement05();
113 } 113 }
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/dom/html/level2/html/HTMLAppletElement11.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698