Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / custom / document-register-reentrant-throwing-constructor.html
blob0c34556959c7f9cdb657b4701aafe2da5040134c
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 unless crash.");
12 setupObjectHooks({
13 prototypeGet: function() { throw "Error"; },
14 prototypeSet: function(value) { throw "Error"; },
15 constructorGet: function() { throw "Error"; },
16 constructorSet: function(value) { throw "Error"; }
17 });
19 exerciseDocumentRegister();
20 </script>
21 </body>
22 </html>