From b030ce199cb5b8a34ad67891cb2cc66d4050215e Mon Sep 17 00:00:00 2001 From: "abarth@webkit.org" Date: Fri, 16 Dec 2011 22:29:02 +0000 Subject: [PATCH]
doesn't parse correctly https://bugs.webkit.org/show_bug.cgi?id=74745 Reviewed by Eric Seidel. Source/WebCore: We were missing one place the spec tells us to set this bool. Tests: html5lib/runner.html * html/parser/HTMLTreeBuilder.cpp: LayoutTests: Show test progression. * html5lib/runner-expected.txt: git-svn-id: https://svn.webkit.org/repository/webkit/trunk@103109 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- LayoutTests/ChangeLog | 11 +++++++++++ LayoutTests/html5lib/runner-expected.txt | Bin 14260 -> 14041 bytes .../platform/chromium/html5lib/runner-expected.txt | Bin 14557 -> 14083 bytes Source/WebCore/ChangeLog | 13 +++++++++++++ Source/WebCore/html/parser/HTMLTreeBuilder.cpp | 1 + 5 files changed, 25 insertions(+) diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog index c17cf829..d6ba5f4 100644 --- a/LayoutTests/ChangeLog +++ b/LayoutTests/ChangeLog @@ -1,3 +1,14 @@ +2011-12-16 Adam Barth + +
doesn't parse correctly + https://bugs.webkit.org/show_bug.cgi?id=74745 + + Reviewed by Eric Seidel. + + Show test progression. + + * html5lib/runner-expected.txt: + 2011-12-16 Tony Chang Unreviewed, updating chromium expectations. diff --git a/LayoutTests/html5lib/runner-expected.txt b/LayoutTests/html5lib/runner-expected.txt index e964ad5d62b6c13613908483a56dbb00e2f118f1..9d6c98ca415ed2f81726b6978891bba7272b2077 100644 GIT binary patch delta 16 Ycmdmze=~Q32KVGGTwy{3sMy_ wN^*1TY*I4I>}-?VIOFyut=6pWl$!Rj{aaj(_}0HVDi-~a#s diff --git a/LayoutTests/platform/chromium/html5lib/runner-expected.txt b/LayoutTests/platform/chromium/html5lib/runner-expected.txt index 220a05becb6afa8fb6678868a9bf466213834f49..1c2b56462cba2f356b72edcb61e38057c4f041f2 100644 GIT binary patch delta 29 lcmcax*qpavDd*%iZn4d~xTZ5sZZi>|oX^X;*@JhgHUPY%3nu^o delta 200 zcmZq9yIZ(nDW?#Zp%E8XNNRD3f}xQ@ewu=j$>c_E;mPwkStnnU6Pz5W%O_z|P?Tz? zrd(l=XbmA9ZS+Axlm8pq3W6oMY7`(qiHmFUdOa5*bWum8&8s<=GYWHA7(#8cFa+6V zXaKg3$Fq9%7RpdjFQ|OJDZfuGCP~3{FF+&$s1XPCvzBSOy=VdpS)ks NgcU5eIf8q&HUO;xI!yoo diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index b4eb899..36991e8 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,16 @@ +2011-12-16 Adam Barth + +
doesn't parse correctly + https://bugs.webkit.org/show_bug.cgi?id=74745 + + Reviewed by Eric Seidel. + + We were missing one place the spec tells us to set this bool. + + Tests: html5lib/runner.html + + * html/parser/HTMLTreeBuilder.cpp: + 2011-12-16 Jarred Nicholls Support HTML documents in XHR.responseXML diff --git a/Source/WebCore/html/parser/HTMLTreeBuilder.cpp b/Source/WebCore/html/parser/HTMLTreeBuilder.cpp index a1f7c25..28e5f9f 100644 --- a/Source/WebCore/html/parser/HTMLTreeBuilder.cpp +++ b/Source/WebCore/html/parser/HTMLTreeBuilder.cpp @@ -765,6 +765,7 @@ void HTMLTreeBuilder::processStartTagForInBody(AtomicHTMLToken& token) ASSERT(isParsingFragment()); return; } + m_framesetOk = false; m_tree.insertHTMLBodyStartTagInBody(token); return; } -- 1.8.3.1