blob: 143a8643f3c94c14feb9664304fa990b6f66d02a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!doctype html>
<meta charset=utf-8>
<title>WebDriver interface test</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=/resources/WebIDLParser.js></script>
<script src=/resources/idlharness.js></script>
<script>
var t = new IdlArray();
t.add_untested_idls("interface Navigator {};");
t.add_idls("partial interface Navigator { readonly attribute boolean webdriver; };");
t.add_objects({Navigator: ["navigator"]});
t.test();
</script>
|