defaultstatus.html (752B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>window.defaultStatus and window.defaultstatus are not supported</title> 4 <link rel="author" href="mailto:masonf@chromium.org"> 5 <link rel="help" href="https://developer.mozilla.org/en-US/docs/Web/API/Window/defaultStatus"> 6 <link rel="help" href="https://crbug.com/692835"> 7 <script src="/resources/testharness.js"></script> 8 <script src="/resources/testharnessreport.js"></script> 9 10 <script> 11 test(() => { 12 assert_false(window.hasOwnProperty('defaultStatus')); 13 assert_false(window.hasOwnProperty('defaultstatus')); 14 assert_equals(window.defaultStatus,undefined); 15 assert_equals(window.defaultstatus,undefined); 16 }, "The window.defaultStatus and window.defaultstatus attributes are not supported"); 17 </script>