mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 461555: Don't clear out the parser until all deferred scripts have executed to ensure that a document.write in a deferred script doesn't clear the page. r/sr=mrbkap
This commit is contained in:
parent
8849aab73b
commit
783650f7b1
@ -349,19 +349,21 @@ nsContentSink::ScriptAvailable(nsresult aResult,
|
||||
mParser->ScriptExecuting();
|
||||
}
|
||||
|
||||
if (count == 0) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
// aElement will not be in mScriptElements if a <script> was added
|
||||
// using the DOM during loading, or if the script was inline and thus
|
||||
// never blocked.
|
||||
NS_ASSERTION(mScriptElements.IndexOf(aElement) == PRUint32(count - 1) ||
|
||||
NS_ASSERTION(count == 0 ||
|
||||
mScriptElements.IndexOf(aElement) == PRUint32(count - 1) ||
|
||||
mScriptElements.IndexOf(aElement) == PRUint32(-1),
|
||||
"script found at unexpected position");
|
||||
|
||||
// Check if this is the element we were waiting for
|
||||
if (aElement != mScriptElements[count - 1]) {
|
||||
if (count == 0 || aElement != mScriptElements[count - 1]) {
|
||||
if (mDidGetReadyToCallDidBuildModelCall &&
|
||||
!mScriptLoader->HasPendingOrCurrentScripts() &&
|
||||
mParser && mParser->IsParserEnabled()) {
|
||||
ContinueInterruptedParsingAsync();
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
@ -406,6 +408,11 @@ nsContentSink::ScriptEvaluated(nsresult aResult,
|
||||
// Check if this is the element we were waiting for
|
||||
PRInt32 count = mScriptElements.Count();
|
||||
if (count == 0 || aElement != mScriptElements[count - 1]) {
|
||||
if (mDidGetReadyToCallDidBuildModelCall &&
|
||||
!mScriptLoader->HasPendingOrCurrentScripts() &&
|
||||
mParser && mParser->IsParserEnabled()) {
|
||||
ContinueInterruptedParsingAsync();
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
@ -1749,6 +1756,23 @@ nsContentSink::ContinueInterruptedParsingAsync()
|
||||
NS_DispatchToCurrentThread(ev);
|
||||
}
|
||||
|
||||
PRBool
|
||||
nsContentSink::ReadyToCallDidBuildModelImpl()
|
||||
{
|
||||
if (!mDidGetReadyToCallDidBuildModelCall) {
|
||||
if (mDocument) {
|
||||
mDocument->SetReadyStateInternal(nsIDocument::READYSTATE_INTERACTIVE);
|
||||
}
|
||||
|
||||
if (mScriptLoader) {
|
||||
mScriptLoader->EndDeferringScripts();
|
||||
}
|
||||
}
|
||||
mDidGetReadyToCallDidBuildModelCall = PR_TRUE;
|
||||
|
||||
return !mScriptLoader || !mScriptLoader->HasPendingOrCurrentScripts();
|
||||
}
|
||||
|
||||
// URIs: action, href, src, longdesc, usemap, cite
|
||||
PRBool
|
||||
IsAttrURI(nsIAtom *aName)
|
||||
|
@ -138,6 +138,7 @@ class nsContentSink : public nsICSSLoaderObserver,
|
||||
NS_HIDDEN_(nsresult) DidProcessATokenImpl(void);
|
||||
NS_HIDDEN_(void) WillBuildModelImpl(void);
|
||||
NS_HIDDEN_(void) DidBuildModelImpl(void);
|
||||
NS_HIDDEN_(PRBool) ReadyToCallDidBuildModelImpl(void);
|
||||
NS_HIDDEN_(void) DropParserAndPerfHint(void);
|
||||
|
||||
void NotifyAppend(nsIContent* aContent, PRUint32 aStartIndex);
|
||||
@ -350,6 +351,8 @@ protected:
|
||||
PRUint8 mDeferredLayoutStart : 1;
|
||||
// If true, we deferred notifications until sheets load
|
||||
PRUint8 mDeferredFlushTags : 1;
|
||||
// If true, we did get a ReadyToCallDidBuildModel call
|
||||
PRUint8 mDidGetReadyToCallDidBuildModelCall : 1;
|
||||
|
||||
// -- Can interrupt parsing members --
|
||||
PRUint32 mDelayTimerStart;
|
||||
|
@ -3966,10 +3966,6 @@ nsDocument::DispatchContentLoadedEvents()
|
||||
} while (parent);
|
||||
}
|
||||
|
||||
if (mScriptLoader) {
|
||||
mScriptLoader->EndDeferringScripts();
|
||||
}
|
||||
|
||||
UnblockOnload(PR_TRUE);
|
||||
}
|
||||
|
||||
@ -3986,8 +3982,6 @@ nsDocument::EndLoad()
|
||||
|
||||
NS_DOCUMENT_NOTIFY_OBSERVERS(EndLoad, (this));
|
||||
|
||||
SetReadyStateInternal(READYSTATE_INTERACTIVE);
|
||||
|
||||
if (!mSynchronousDOMContentLoaded) {
|
||||
nsRefPtr<nsIRunnable> ev =
|
||||
new nsRunnableMethod<nsDocument>(this,
|
||||
|
@ -208,6 +208,14 @@ public:
|
||||
*/
|
||||
void EndDeferringScripts();
|
||||
|
||||
/**
|
||||
* Returns the number of pending scripts, deferred or not.
|
||||
*/
|
||||
PRUint32 HasPendingOrCurrentScripts()
|
||||
{
|
||||
return mCurrentScript || GetFirstPendingRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds aURI to the preload list and starts loading it.
|
||||
*
|
||||
|
@ -282,6 +282,7 @@ _TEST_FILES = test_bug5141.html \
|
||||
file_XHRSendData_doc.xml \
|
||||
file_XHRSendData_doc.xml^headers^ \
|
||||
test_bug466751.xhtml \
|
||||
test_bug461555.html \
|
||||
$(NULL)
|
||||
|
||||
# Disabled for now. Mochitest isn't reliable enough for these.
|
||||
|
64
content/base/test/test_bug461555.html
Normal file
64
content/base/test/test_bug461555.html
Normal file
@ -0,0 +1,64 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=461555
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 461555</title>
|
||||
<script type="application/javascript" src="/MochiKit/MochiKit.js"></script>
|
||||
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=461555">Mozilla Bug 461555</a>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none">
|
||||
|
||||
</div>
|
||||
<script>
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
|
||||
function writeIt(n) {
|
||||
document.write("<span>" + n + "</span>");
|
||||
}
|
||||
|
||||
var recur = 0;
|
||||
function externalScript() {
|
||||
if (++recur == 3) {
|
||||
return;
|
||||
}
|
||||
|
||||
base = (recur-1) * 4
|
||||
|
||||
writeIt(6 + base);
|
||||
s = document.createElement("script");
|
||||
s.src = "data:text/plain,writeIt(" + (8+base) + ");writeIt(" + (9+base) + ");externalScript();";
|
||||
document.body.appendChild(s);
|
||||
writeIt(7 + base);
|
||||
}
|
||||
|
||||
function done() {
|
||||
nodes = document.getElementsByTagName('span');
|
||||
is(nodes.length, 13, "wrong length");
|
||||
for (i = 0; i < nodes.length; ++i) {
|
||||
is(nodes[i].textContent, i+1, "wrong order");
|
||||
}
|
||||
SimpleTest.finish();
|
||||
}
|
||||
|
||||
document.addEventListener("DOMContentLoaded", function() {
|
||||
done();
|
||||
}, false);
|
||||
|
||||
writeIt(1);
|
||||
|
||||
</script>
|
||||
<script defer>
|
||||
writeIt(3);
|
||||
</script>
|
||||
<script>
|
||||
writeIt(2);
|
||||
</script>
|
||||
<script defer src="data:text/plain,writeIt(4);writeIt(5);"></script>
|
||||
<script defer src="data:text/plain,externalScript();"></script>
|
@ -185,6 +185,7 @@ public:
|
||||
NS_IMETHOD WillParse(void);
|
||||
NS_IMETHOD WillBuildModel(void);
|
||||
NS_IMETHOD DidBuildModel(void);
|
||||
virtual PRBool ReadyToCallDidBuildModel(void);
|
||||
NS_IMETHOD WillInterrupt(void);
|
||||
NS_IMETHOD WillResume(void);
|
||||
NS_IMETHOD SetParser(nsIParser* aParser);
|
||||
@ -1837,6 +1838,12 @@ HTMLContentSink::DidBuildModel(void)
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
PRBool
|
||||
HTMLContentSink::ReadyToCallDidBuildModel()
|
||||
{
|
||||
return ReadyToCallDidBuildModelImpl();
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
HTMLContentSink::SetParser(nsIParser* aParser)
|
||||
{
|
||||
|
@ -383,6 +383,12 @@ nsXMLContentSink::DidBuildModel()
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
PRBool
|
||||
nsXMLContentSink::ReadyToCallDidBuildModel()
|
||||
{
|
||||
return ReadyToCallDidBuildModelImpl();
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsXMLContentSink::OnDocumentCreated(nsIDocument* aResultDocument)
|
||||
{
|
||||
|
@ -93,6 +93,7 @@ public:
|
||||
NS_IMETHOD WillParse(void);
|
||||
NS_IMETHOD WillBuildModel(void);
|
||||
NS_IMETHOD DidBuildModel(void);
|
||||
virtual PRBool ReadyToCallDidBuildModel(void);
|
||||
NS_IMETHOD WillInterrupt(void);
|
||||
NS_IMETHOD WillResume(void);
|
||||
NS_IMETHOD SetParser(nsIParser* aParser);
|
||||
|
@ -540,10 +540,8 @@ nsXMLDocument::EndLoad()
|
||||
mChannelIsPending = PR_FALSE;
|
||||
mLoopingForSyncLoad = PR_FALSE;
|
||||
|
||||
mSynchronousDOMContentLoaded = (mLoadedAsData || mLoadedAsInteractiveData);
|
||||
nsDocument::EndLoad();
|
||||
if (mSynchronousDOMContentLoaded) {
|
||||
mSynchronousDOMContentLoaded = PR_FALSE;
|
||||
if (mLoadedAsData || mLoadedAsInteractiveData) {
|
||||
nsDocument::SetReadyStateInternal(nsIDocument::READYSTATE_COMPLETE);
|
||||
// Generate a document load event for the case when an XML
|
||||
// document was loaded as pure data without any presentation
|
||||
|
@ -56,8 +56,8 @@
|
||||
class nsIParser;
|
||||
|
||||
#define NS_ICONTENT_SINK_IID \
|
||||
{ 0x94ec4df1, 0x6885, 0x4b1f, \
|
||||
{ 0x85, 0x10, 0xe3, 0x5f, 0x4f, 0x36, 0xea, 0xaa } }
|
||||
{ 0xcfa3643b, 0xee60, 0x4bf0, \
|
||||
{ 0xbc, 0x83, 0x49, 0x95, 0xdb, 0xbc, 0xda, 0x75 } }
|
||||
|
||||
class nsIContentSink : public nsISupports {
|
||||
public:
|
||||
@ -88,6 +88,12 @@ public:
|
||||
*/
|
||||
NS_IMETHOD DidBuildModel()=0;
|
||||
|
||||
/**
|
||||
* Thie method gets caller right before DidBuildModel is called.
|
||||
* If false
|
||||
*/
|
||||
virtual PRBool ReadyToCallDidBuildModel() { return PR_TRUE; };
|
||||
|
||||
/**
|
||||
* This method gets called when the parser gets i/o blocked,
|
||||
* and wants to notify the sink that it may be a while before
|
||||
|
@ -1525,7 +1525,8 @@ nsParser::DidBuildModel(nsresult anErrorCode)
|
||||
|
||||
if (IsComplete()) {
|
||||
if (mParserContext && !mParserContext->mPrevContext) {
|
||||
if (mParserContext->mDTD) {
|
||||
if (mParserContext->mDTD && mSink &&
|
||||
mSink->ReadyToCallDidBuildModel()) {
|
||||
result = mParserContext->mDTD->DidBuildModel(anErrorCode,PR_TRUE,this,mSink);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user