| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../resources/js-test.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <script> | 7 <script> |
| 8 description("This tests the length property of constructors."); | 8 description("This tests the length property of constructors."); |
| 9 | 9 |
| 10 shouldBe('ArrayBuffer.length', '1'); | 10 shouldBe('ArrayBuffer.length', '1'); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 shouldBe('EventSource.length', '1'); | 21 shouldBe('EventSource.length', '1'); |
| 22 shouldBe('Float32Array.length', '3'); | 22 shouldBe('Float32Array.length', '3'); |
| 23 shouldBe('Float64Array.length', '3'); | 23 shouldBe('Float64Array.length', '3'); |
| 24 shouldBe('FileReader.length', '0'); | 24 shouldBe('FileReader.length', '0'); |
| 25 shouldBe('FileReaderSync.length', '0'); | 25 shouldBe('FileReaderSync.length', '0'); |
| 26 shouldBe('HashChangeEvent.length', '1'); | 26 shouldBe('HashChangeEvent.length', '1'); |
| 27 shouldBe('Int16Array.length', '3'); | 27 shouldBe('Int16Array.length', '3'); |
| 28 shouldBe('Int32Array.length', '3'); | 28 shouldBe('Int32Array.length', '3'); |
| 29 shouldBe('Int8Array.length', '3'); | 29 shouldBe('Int8Array.length', '3'); |
| 30 shouldBe('Intent.length', '3'); | 30 shouldBe('Intent.length', '3'); |
| 31 shouldBe('MediaController.length', '0'); | |
| 32 shouldBe('MediaStream.length', '0'); | 31 shouldBe('MediaStream.length', '0'); |
| 33 shouldBe('MessageChannel.length', '0'); | 32 shouldBe('MessageChannel.length', '0'); |
| 34 shouldBe('MessageEvent.length', '1'); | 33 shouldBe('MessageEvent.length', '1'); |
| 35 shouldBe('PageTransitionEvent.length', '1'); | 34 shouldBe('PageTransitionEvent.length', '1'); |
| 36 shouldBe('PeerConnection.length', '2'); | 35 shouldBe('PeerConnection.length', '2'); |
| 37 shouldBe('PopStateEvent.length', '1'); | 36 shouldBe('PopStateEvent.length', '1'); |
| 38 shouldBe('ProgressEvent.length', '1'); | 37 shouldBe('ProgressEvent.length', '1'); |
| 39 shouldBe('ShadowRoot.length', '0'); | 38 shouldBe('ShadowRoot.length', '0'); |
| 40 shouldBe('SharedWorker.length', '1'); | 39 shouldBe('SharedWorker.length', '1'); |
| 41 shouldBe('StorageEvent.length', '1'); | 40 shouldBe('StorageEvent.length', '1'); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 54 shouldBe('Worker.length', '1'); | 53 shouldBe('Worker.length', '1'); |
| 55 shouldBe('URL.length', '1'); | 54 shouldBe('URL.length', '1'); |
| 56 shouldBe('XMLHttpRequest.length', '0'); | 55 shouldBe('XMLHttpRequest.length', '0'); |
| 57 shouldBe('XMLSerializer.length', '0'); | 56 shouldBe('XMLSerializer.length', '0'); |
| 58 shouldBe('XPathEvaluator.length', '0'); | 57 shouldBe('XPathEvaluator.length', '0'); |
| 59 shouldBe('XSLTProcessor.length', '0'); | 58 shouldBe('XSLTProcessor.length', '0'); |
| 60 | 59 |
| 61 </script> | 60 </script> |
| 62 </body> | 61 </body> |
| 63 </html> | 62 </html> |
| OLD | NEW |