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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/html/infrastructure/common-dom-interfaces/collections/domstringlist-interface.html

Issue 2634323002: Import wpt@aae3e1b6ffb8b24acb777450933ceeafd97e3655 (Closed)
Patch Set: Modify TestExpectations or download new baselines for tests. Created 3 years, 11 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
(Empty)
1 <!doctype html>
2 <meta charset=utf-8>
3 <title>DOMStringList IDL tests</title>
4 <script src=/resources/testharness.js></script>
5 <script src=/resources/testharnessreport.js></script>
6 <script src=/resources/WebIDLParser.js></script>
7 <script src=/resources/idlharness.js></script>
8
9 <h1>DOMStringList IDL tests</h1>
10 <div id=log></div>
11
12 <script>
13 "use strict";
14 async_test(function(t) {
15 var request = new XMLHttpRequest();
16 request.open("GET", "domstringlist.idl");
17 request.send();
18 request.onload = t.step_func(function() {
19 var idlArray = new IdlArray();
20 var idls = request.responseText;
21
22 idlArray.add_idls(idls);
23
24 idlArray.add_objects({
25 DOMStringList: ['location.ancestorOrigins'],
26 });
27
28 idlArray.test();
29 t.done();
30 });
31 });
32 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698