| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>WebStorage Test: missing arguments</title> | 4 <title>WebStorage Test: missing arguments</title> |
| 5 <script src="../../../resources/testharness.js"></script> | 5 <script src="../../../resources/testharness.js"></script> |
| 6 <script src="../../../resources/testharnessreport.js"></script> | 6 <script src="../../../resources/testharnessreport.js"></script> |
| 7 </head> | 7 </head> |
| 8 <body> | 8 <body> |
| 9 <h1>missing_arguments</h1> | 9 <h1>missing_arguments</h1> |
| 10 <div id="log"></div> | 10 <div id="log"></div> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 function() { new StorageEvent(); } | 23 function() { new StorageEvent(); } |
| 24 ]; | 24 ]; |
| 25 tests.forEach(function(fun) { | 25 tests.forEach(function(fun) { |
| 26 test(function() { | 26 test(function() { |
| 27 assert_throws(new TypeError(), fun); | 27 assert_throws(new TypeError(), fun); |
| 28 }, "Should throw TypeError for " + format_value(fun) + "."); | 28 }, "Should throw TypeError for " + format_value(fun) + "."); |
| 29 }); | 29 }); |
| 30 </script> | 30 </script> |
| 31 </body> | 31 </body> |
| 32 </html> | 32 </html> |
| OLD | NEW |