Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: LayoutTests/fast/dom/custom/document-register-reentrant-throwing-constructor.html

Issue 117313008: Update Custom Elements API to new names. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update for forgotten tests. Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 <script src="./resources/document-register-fuzz.js"></script> 5 <script src="./resources/document-register-fuzz.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <div id="container"></div> 8 <div id="container"></div>
9 <script> 9 <script>
10 description("Fuzzing document.register() through getters. PASS unless crash."); 10 description("Fuzzing document.registerElement() through getters. PASS unless cra sh.");
11 11
12 setupObjectHooks({ 12 setupObjectHooks({
13 prototypeGet: function() { throw "Error"; }, 13 prototypeGet: function() { throw "Error"; },
14 prototypeSet: function(value) { throw "Error"; }, 14 prototypeSet: function(value) { throw "Error"; },
15 constructorGet: function() { throw "Error"; }, 15 constructorGet: function() { throw "Error"; },
16 constructorSet: function(value) { throw "Error"; } 16 constructorSet: function(value) { throw "Error"; }
17 }); 17 });
18 18
19 exerciseDocumentRegister(); 19 exerciseDocumentRegister();
20 </script> 20 </script>
21 </body> 21 </body>
22 </html> 22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698