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

Side by Side Diff: LayoutTests/fast/dom/custom/registration-context-delete-during-register-prototype-retrieval.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 <script src="../../js/resources/js-test-pre.js"></script> 2 <script src="../../js/resources/js-test-pre.js"></script>
3 <script src="testutils.js"></script> 3 <script src="testutils.js"></script>
4 <body> 4 <body>
5 <script> 5 <script>
6 if (fork()) { 6 if (fork()) {
7 // The controlling parent frame 7 // The controlling parent frame
8 description('Tests destroying a context during registration at the point whe n the prototype is retrieved.'); 8 description('Tests destroying a context during registration at the point whe n the prototype is retrieved.');
9 jsTestIsAsync = true; 9 jsTestIsAsync = true;
10 successfullyParsed = true; 10 successfullyParsed = true;
(...skipping 12 matching lines...) Expand all
23 23
24 try { 24 try {
25 document.register('x-a', options); 25 document.register('x-a', options);
26 log('FAIL expected register to throw an exception'); 26 log('FAIL expected register to throw an exception');
27 } catch (ex) { 27 } catch (ex) {
28 log('PASS caught expected exception "' + ex + '"'); 28 log('PASS caught expected exception "' + ex + '"');
29 } 29 }
30 done(); 30 done();
31 } 31 }
32 </script> 32 </script>
33 <script src="../../js/resources/js-test-post.js"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698