[Webkit-unassigned] [Bug 20362] HTML errors not reported if the inspector is closed

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Oct 29 17:27:05 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=20362





--- Comment #4 from Pavel Feldman <pfeldman at chromium.org>  2009-10-29 17:27:04 PDT ---
(In reply to comment #3)
> Javascript errors are shown, right? It's just HTML errors that aren't? I feel
> like we should be consistent.

HTMLDocument.cpp

Tokenizer *HTMLDocument::createTokenizer()
{
    bool reportErrors = false;
#if ENABLE(INSPECTOR)
    if (Page* page = this->page())
        reportErrors = page->inspectorController()->windowVisible();
#endif

    return new HTMLTokenizer(this, reportErrors);
}

Who wants to hardcode 'true' under #if ENABLE(INSPECTOR)?

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list