RESOLVED FIXED 173509
Demote the "we have navigated away" check to an assertion.
https://bugs.webkit.org/show_bug.cgi?id=173509
Summary Demote the "we have navigated away" check to an assertion.
zalan
Reported 2017-06-16 21:20:49 PDT
Now that it is ensured that the render tree can't get to the page cache.
Attachments
Patch (2.15 KB, patch)
2017-06-16 21:27 PDT, zalan
no flags
Archive of layout-test-results from ews102 for mac-elcapitan (1015.96 KB, application/zip)
2017-06-16 22:26 PDT, Build Bot
no flags
zalan
Comment 1 2017-06-16 21:27:12 PDT
Simon Fraser (smfr)
Comment 2 2017-06-16 21:32:21 PDT
Comment on attachment 313183 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=313183&action=review > Source/WebCore/ChangeLog:3 > + Demote the "we have navigated away" check to an assertion. I don't see anything getting demoted in this patch?
zalan
Comment 3 2017-06-16 21:34:44 PDT
(In reply to Simon Fraser (smfr) from comment #2) > Comment on attachment 313183 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=313183&action=review > > > Source/WebCore/ChangeLog:3 > > + Demote the "we have navigated away" check to an assertion. > > I don't see anything getting demoted in this patch? FrameView* frameView = frame()->document() == this ? frame()->view() : nullptr vs. assert() + view()
Simon Fraser (smfr)
Comment 4 2017-06-16 21:36:11 PDT
Comment on attachment 313183 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=313183&action=review >>> Source/WebCore/ChangeLog:3 >>> + Demote the "we have navigated away" check to an assertion. >> >> I don't see anything getting demoted in this patch? > > FrameView* frameView = frame()->document() == this ? frame()->view() : nullptr > vs. > assert() + view() Ah, that's a bit subtle.
zalan
Comment 5 2017-06-16 22:21:22 PDT
(In reply to Simon Fraser (smfr) from comment #4) > Comment on attachment 313183 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=313183&action=review > > >>> Source/WebCore/ChangeLog:3 > >>> + Demote the "we have navigated away" check to an assertion. > >> > >> I don't see anything getting demoted in this patch? > > > > FrameView* frameView = frame()->document() == this ? frame()->view() : nullptr > > vs. > > assert() + view() > > Ah, that's a bit subtle. yea, but that's the expected behavior now.
Build Bot
Comment 6 2017-06-16 22:26:41 PDT
Comment on attachment 313183 [details] Patch Attachment 313183 [details] did not pass mac-ews (mac): Output: http://webkit-queues.webkit.org/results/3945982 New failing tests: inspector/canvas/create-canvas-contexts.html
Build Bot
Comment 7 2017-06-16 22:26:43 PDT
Created attachment 313187 [details] Archive of layout-test-results from ews102 for mac-elcapitan The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: ews102 Port: mac-elcapitan Platform: Mac OS X 10.11.6
zalan
Comment 8 2017-06-16 22:28:34 PDT
(In reply to Build Bot from comment #6) > Comment on attachment 313183 [details] > Patch > > Attachment 313183 [details] did not pass mac-ews (mac): > Output: http://webkit-queues.webkit.org/results/3945982 > > New failing tests: > inspector/canvas/create-canvas-contexts.html really???
WebKit Commit Bot
Comment 9 2017-06-17 13:37:10 PDT
Comment on attachment 313183 [details] Patch Clearing flags on attachment: 313183 Committed r218456: <http://trac.webkit.org/changeset/218456>
WebKit Commit Bot
Comment 10 2017-06-17 13:37:12 PDT
All reviewed patches have been landed. Closing bug.
Darin Adler
Comment 11 2017-06-17 18:42:33 PDT
Comment on attachment 313183 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=313183&action=review > Source/WebCore/dom/Document.cpp:2215 > + ASSERT(frame() && frame()->document() == this); Please don’t use && in assertions. If you write this as two separate assertions, and half of it failed, we will be able to tell which half.
zalan
Comment 12 2017-06-17 18:45:20 PDT
(In reply to Darin Adler from comment #11) > Comment on attachment 313183 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=313183&action=review > > > Source/WebCore/dom/Document.cpp:2215 > > + ASSERT(frame() && frame()->document() == this); > > Please don’t use && in assertions. If you write this as two separate > assertions, and half of it failed, we will be able to tell which half. Oh, right! I usually keep in mind not to merge them. Not sure what happened here. :( Thanks!
zalan
Comment 13 2017-06-17 20:57:31 PDT
Note You need to log in before you can comment on or make changes to this bug.