| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="../../resources/testharness.js"></script> | 2 <script src="../../resources/testharness.js"></script> |
| 3 <script src="../../resources/testharnessreport.js"></script> | 3 <script src="../../resources/testharnessreport.js"></script> |
| 4 <script> | 4 <script> |
| 5 'use strict'; | 5 'use strict'; |
| 6 | 6 |
| 7 test(() => { | 7 test(() => { |
| 8 assert_true('bluetooth' in navigator, | 8 assert_true('bluetooth' in navigator, |
| 9 'navigator.bluetooth exists.'); | 9 'navigator.bluetooth exists.'); |
| 10 }, 'navigator.bluetooth IDL test'); | 10 }, 'navigator.bluetooth IDL test'); |
| 11 |
| 12 test(() => { |
| 13 assert_equals(navigator.bluetooth, navigator.bluetooth); |
| 14 }, '[SameObject] test for navigator.bluetooth'); |
| 11 </script> | 15 </script> |
| OLD | NEW |