Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / custom / document-register-reentrant-null-constructor.html
blob8eea6e12972d5abc6ec05e0890dac684dfb82bd5
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../../resources/js-test.js"></script>
5 <script src="./resources/document-register-fuzz.js"></script>
6 </head>
7 <body>
8 <div id="container"></div>
9 <script>
10 description("Fuzzing document.registerElement() through getters. PASS uless crash.");
12 setupObjectHooks({
13 prototypeGet: function() { },
14 prototypeSet: function(value) { },
15 constructorGet: function() { },
16 constructorSet: function(value) { }
17 });
19 exerciseDocumentRegister();
20 </script>
21 </body>
22 </html>