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

Side by Side Diff: third_party/WebKit/LayoutTests/installedapp/idl.html

Issue 2662303003: Some small tweaks to getInstalledRelatedApps IDL files. (Closed)
Patch Set: Removed RelatedApplication from global-interface-listing-expected.txt. Created 3 years, 10 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/webexposed/global-interface-listing-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 <link rel="help" href="https://github.com/WICG/get-installed-related-apps/blob/m aster/EXPLAINER.md">
3 <script src=../resources/testharness.js></script>
4 <script src=../resources/testharnessreport.js></script>
5 <script src=../resources/WebIDLParser.js></script>
6 <script src=../resources/idlharness.js></script>
7 <script type="text/plain" id="untested">
8 interface Navigator {
9 };
10 </script>
11 <script type="text/plain" id="tested">
12 [NoInterfaceObject]
13 interface RelatedApplication {
14 readonly attribute DOMString platform;
15 readonly attribute DOMString url;
16 readonly attribute DOMString id;
17 };
18 partial interface Navigator {
19 Promise<RelatedApplication> getInstalledRelatedApps();
20 };
21 </script>
22 <script>
23 "use strict";
24 var idl_array = new IdlArray();
25 idl_array.add_untested_idls(document.querySelector("#untested").textContent) ;
26 idl_array.add_idls(document.querySelector('#tested').textContent);
27 idl_array.add_objects({
28 Navigator: ['navigator']
29 });
30 idl_array.test();
31 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698