Changeset 234944 in webkit
- Timestamp:
- Aug 16, 2018, 11:25:02 AM (7 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/LayoutTests/ChangeLog ¶
r234940 r234944 1 2018-08-16 Ryosuke Niwa <rniwa@webkit.org> 2 3 Perform a microtask checkpoint before creating a custom element 4 https://bugs.webkit.org/show_bug.cgi?id=188189 5 <rdar://problem/42843022> 6 7 Reviewed by Geoffrey Garen. 8 9 Added a W3C style testharness.js test for perfoming microtask checkpoint before constructing 10 a custom element synchronously. 11 12 * fast/custom-elements/perform-microtask-checkpoint-before-construction-expected.txt: Added. 13 * fast/custom-elements/perform-microtask-checkpoint-before-construction.html: Added. 14 * fast/dom/MutationObserver/parser-mutations.html: Fixed the test per new behavior in Document::finishParsing. 15 Because iframe loads synchronously and fires DOMContentLoaded, mutation records are now delivered twice after 16 iframe element is encountered in this test and before script element executes. Concatenate the mutation records 17 arrays to account for this behavioral change. New WebKit behavior matches that of Chrome; namely this test 18 fails both on Chrome Canary 70 and trunk WebKit with this patch without this fix. 19 1 20 2018-08-15 Jer Noble <jer.noble@apple.com> 2 21 -
TabularUnified trunk/LayoutTests/fast/dom/MutationObserver/parser-mutations.html ¶
r155265 r234944 8 8 testRunner.dumpAsText(); 9 9 10 var mutations = []; 10 11 var observer = new MutationObserver(function(mutations, observer) { 11 window.mutations = mutations;12 window.mutations = window.mutations.concat(mutations); 12 13 }); 13 14 observer.observe(document.body, {childList: true, subtree:true}); -
TabularUnified trunk/Source/WebCore/ChangeLog ¶
r234943 r234944 1 2018-08-16 Ryosuke Niwa <rniwa@webkit.org> 2 3 Perform a microtask checkpoint before creating a custom element 4 https://bugs.webkit.org/show_bug.cgi?id=188189 5 <rdar://problem/42843022> 6 7 Reviewed by Geoffrey Garen. 8 9 Fixed the bug that the HTML parser was not performing a microtask checkpoint prior to synchronously constructing 10 a custom element in the concept to create an element for a token: 11 https://html.spec.whatwg.org/multipage/parsing.html#creating-and-inserting-nodes:perform-a-microtask-checkpoint 12 13 Also added a microtask checkpoint before dispatching DOMContentLoaded to work around webkit.org/b/82931 since 14 scheduling a task to fire a DOMContentLoaded event in Document::finishedParsing as the HTML5 spec mandates 15 is a long standing bug with a lot of implications, which is completely outside the scope of this bug fix: 16 https://html.spec.whatwg.org/multipage/parsing.html#stop-parsing 17 18 Test: fast/custom-elements/perform-microtask-checkpoint-before-construction.html 19 20 * dom/Document.cpp: 21 (WebCore::Document::finishedParsing): Perform a microtask checkpoint before dispatching DOMContentLoaded here as 22 a workaround for webkit.org/b/82931. 23 * html/parser/HTMLDocumentParser.cpp: 24 (WebCore::HTMLDocumentParser::runScriptsForPausedTreeBuilder): Perform a microtask checkpoint here to fix the bug. 25 1 26 2018-08-16 Alex Christensen <achristensen@webkit.org> 2 27 -
TabularUnified trunk/Source/WebCore/dom/Document.cpp ¶
r234808 r234944 5428 5428 m_documentTiming.domContentLoadedEventStart = MonotonicTime::now(); 5429 5429 5430 // FIXME: Schdule a task to fire DOMContentLoaded event instead. See webkit.org/b/82931 5431 MicrotaskQueue::mainThreadQueue().performMicrotaskCheckpoint(); 5432 5430 5433 dispatchEvent(Event::create(eventNames().DOMContentLoadedEvent, true, false)); 5431 5434 -
TabularUnified trunk/Source/WebCore/html/parser/HTMLDocumentParser.cpp ¶
r234680 r234944 40 40 #include "JSCustomElementInterface.h" 41 41 #include "LinkLoader.h" 42 #include "Microtasks.h" 42 43 #include "NavigationScheduler.h" 43 44 #include "ScriptElement.h" … … 214 215 // Prevent document.open/write during reactions by allocating the incrementer before the reactions stack. 215 216 ThrowOnDynamicMarkupInsertionCountIncrementer incrementer(*document()); 217 218 MicrotaskQueue::mainThreadQueue().performMicrotaskCheckpoint(); 219 216 220 CustomElementReactionStack reactionStack(document()->execState()); 217 221 auto& elementInterface = constructionData->elementInterface.get();
Note:
See TracChangeset
for help on using the changeset viewer.