Index: sky/tests/custom-elements/document-register-reentrant-returning-fake.sky |
diff --git a/sky/tests/custom-elements/document-register-reentrant-returning-fake.sky b/sky/tests/custom-elements/document-register-reentrant-returning-fake.sky |
deleted file mode 100644 |
index 3b616f032feb7aaaf328cf8f2ab248a348b04500..0000000000000000000000000000000000000000 |
--- a/sky/tests/custom-elements/document-register-reentrant-returning-fake.sky |
+++ /dev/null |
@@ -1,21 +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 uless crash. |
-<script> |
-var badPrototype = Image.prototype; |
-var badConstructor = Image.prototype.constructor; |
- |
-fuzzer.setupObjectHooks({ |
- prototypeGet: function() { return badPrototype; }, |
- prototypeSet: function(value) { }, |
- constructorGet: function() { return badConstructor; }, |
- constructorSet: function(value) { } |
-}); |
- |
-fuzzer.exerciseDocumentRegister(); |
-</script> |
-</body> |
-</html> |