Index: sky/tests/custom-elements/document-register-reentrant-throwing-constructor.sky |
diff --git a/sky/tests/custom-elements/document-register-reentrant-throwing-constructor.sky b/sky/tests/custom-elements/document-register-reentrant-throwing-constructor.sky |
deleted file mode 100644 |
index 56848976e148ffa5ced4e61e20102b5343b3b2c4..0000000000000000000000000000000000000000 |
--- a/sky/tests/custom-elements/document-register-reentrant-throwing-constructor.sky |
+++ /dev/null |
@@ -1,18 +0,0 @@ |
-<html> |
-<import src="../resources/dump-as-text.sky" /> |
-<import src="resources/document-register-fuzz.sky" as="fuzzer" /> |
-<body> |
-<div id="container"></div> |
-Fuzzing document.registerElement() through getters. PASS unless crash. |
-<script> |
-fuzzer.setupObjectHooks({ |
- prototypeGet: function() { throw "Error"; }, |
- prototypeSet: function(value) { throw "Error"; }, |
- constructorGet: function() { throw "Error"; }, |
- constructorSet: function(value) { throw "Error"; } |
-}); |
- |
-fuzzer.exerciseDocumentRegister(); |
-</script> |
-</body> |
-</html> |