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

Side by Side Diff: LayoutTests/fast/dom/MutationObserver/script-end-tag.html

Issue 130983011: Perform a microtask checkpoint for document.write('<script><\/script>') (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 months 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
(Empty)
1 <!DOCTYPE html>
2 <script src="../../../resources/js-test.js"></script>
3 <script>
4 description('Test that a script end tags invokes MutationObserver callbacks');
5
6 var mutationsDelivered = false;
7 function callback(mutations) {
8 mutationsDelivered = true;
9 }
10
11 var observer = new MutationObserver(callback);
12 var div = document.createElement('div');
13 observer.observe(div, {attributes: true});
14 div.setAttribute('foo', 'bar');
15 shouldBeFalse('mutationsDelivered');
16 document.write('<script><\/script>'); // performs a microtask checkpoint
17 shouldBeTrue('mutationsDelivered');
18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698