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

Side by Side Diff: LayoutTests/fast/dom/MutationObserver/disconnect-cancel-pending.html

Issue 58533003: Move fast/js/resources files to resources. (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="../../../resources/js-test.js"></script>
3 <script> 3 <script>
4 description('Test that WebKitMutationObserver.disconnect cancels pending deliver y'); 4 description('Test that WebKitMutationObserver.disconnect cancels pending deliver y');
5 5
6 window.jsTestIsAsync = true; 6 window.jsTestIsAsync = true;
7 var mutations; 7 var mutations;
8 var observer; 8 var observer;
9 9
10 function start() { 10 function start() {
11 mutations = null; 11 mutations = null;
12 div = document.createElement('div'); 12 div = document.createElement('div');
(...skipping 18 matching lines...) Expand all
31 31
32 function finish() { 32 function finish() {
33 debug('...and re-observing should not see any of the previously-generated re cords.'); 33 debug('...and re-observing should not see any of the previously-generated re cords.');
34 shouldBe('mutations.length', '1'); 34 shouldBe('mutations.length', '1');
35 shouldBe('mutations[0].attributeName', '"bar"'); 35 shouldBe('mutations[0].attributeName', '"bar"');
36 finishJSTest(); 36 finishJSTest();
37 } 37 }
38 38
39 start(); 39 start();
40 </script> 40 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698