| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../../fast/js/resources/js-test-pre.js"></script> | 3 <script src="../../fast/js/resources/js-test-pre.js"></script> |
| 4 <script src="resources/shared.js"></script> | 4 <script src="resources/shared.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <input type="file" id="fileInput" multiple></input> | 7 <input type="file" id="fileInput" multiple></input> |
| 8 <script> | 8 <script> |
| 9 | 9 |
| 10 description("Test structured clone permutations in IndexedDB. File/FileList test
s require DumpRenderTree."); | 10 description("Test structured clone permutations in IndexedDB. File/FileList test
s require DumpRenderTree."); |
| (...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 evalAndExpectException("store.put(new Function, 'key')", "DOMException.DATA_
CLONE_ERR"); | 543 evalAndExpectException("store.put(new Function, 'key')", "DOMException.DATA_
CLONE_ERR"); |
| 544 | 544 |
| 545 debug(""); | 545 debug(""); |
| 546 debug("Other host object types:"); | 546 debug("Other host object types:"); |
| 547 evalAndExpectException("store.put(self, 'key')", "DOMException.DATA_CLONE_ER
R"); | 547 evalAndExpectException("store.put(self, 'key')", "DOMException.DATA_CLONE_ER
R"); |
| 548 evalAndExpectException("store.put(document, 'key')", "DOMException.DATA_CLON
E_ERR"); | 548 evalAndExpectException("store.put(document, 'key')", "DOMException.DATA_CLON
E_ERR"); |
| 549 evalAndExpectException("store.put(document.body, 'key')", "DOMException.DATA
_CLONE_ERR"); | 549 evalAndExpectException("store.put(document.body, 'key')", "DOMException.DATA
_CLONE_ERR"); |
| 550 } | 550 } |
| 551 | 551 |
| 552 </script> | 552 </script> |
| 553 <script src="../../fast/js/resources/js-test-post.js"></script> | |
| 554 </body> | 553 </body> |
| 555 </html> | 554 </html> |
| OLD | NEW |