RESOLVED FIXED 31509
[Qt] Implement error pages handling support to DRT.
https://bugs.webkit.org/show_bug.cgi?id=31509
Summary [Qt] Implement error pages handling support to DRT.
Antonio Gomes
Reported 2009-11-14 15:06:03 PST
It turns out that none of the current DRT implementations (mac, win, gtk and qt) support "error pages" when an unsuccessful load happens. IMO, such feature could make DRTs to act more like a real browser, and then is a good thing to have, and give tests more accurate. I got dumbs-up on IRC for moving forward on that implementation (see below), and I am making it for the QT DRT in advance. (...) <tonikitoo> (well, darin showed no objection based on the lack of a better suggestion for my problem) <tonikitoo> my plan: <tonikitoo> 1) make sure my FrameLoader patch does not break current gtk, mac and win tests. <tonikitoo> 2) put my specific test in other DRT Skipped list for now (mac, gtk and win). <tonikitoo> 3) and file follow up bugs to these ports to implement support for error pages in their DRT's <tonikitoo> ap,aroben: what do you think ? <aroben> tonikitoo: that sounds pretty good to me <ap> tonikitoo: you don't have access to Mac or Windows, do you? it would be nice to implement this for at least one platform where Safari works <ap> tonikitoo: otherwise, sounds good (...) <ap> tonikitoo: I'm not sure why you want this to be configurable. isn't it always good for DRT to show error pages? <ap> tonikitoo: making DRT behave more like a real browser is certainly good (...) patch coming ...
Attachments
(landed in r51037) patch 0.1 (6.16 KB, patch)
2009-11-14 15:11 PST, Antonio Gomes
no flags
Antonio Gomes
Comment 1 2009-11-14 15:11:15 PST
Created attachment 43231 [details] (landed in r51037) patch 0.1 patch implements error page handling support to Qt's DRT, when an unsuccessful load happends. feature is OFF by default (so same behavior as current in all DRT), but can be enabled by called 'layoutTestController.handleErrorPages();' from layout test JS sourcecode. please comments are welcome about namings here
Kenneth Rohde Christiansen
Comment 2 2009-11-15 07:25:34 PST
Comment on attachment 43231 [details] (landed in r51037) patch 0.1 > + QWebPage::ErrorPageExtensionReturn* errorPage = static_cast<QWebPage::ErrorPageExtensionReturn*>(output); > + > + errorPage->content = QString("data:text/html,<body/>").toUtf8(); Wouldn't it make sense to actually print the error code?
Antonio Gomes
Comment 3 2009-11-15 09:08:48 PST
(In reply to comment #2) > (From update of attachment 43231 [details]) > > > + QWebPage::ErrorPageExtensionReturn* errorPage = static_cast<QWebPage::ErrorPageExtensionReturn*>(output); > > + > > + errorPage->content = QString("data:text/html,<body/>").toUtf8(); > > Wouldn't it make sense to actually print the error code? I think we could although error codes can be platform dependent too. we can improve it later, also. thx kenneth.
Antonio Gomes
Comment 4 2009-11-16 07:44:33 PST
Antonio Gomes
Comment 5 2009-11-16 08:17:32 PST
> <tonikitoo> 3) and file follow up bugs to these ports to implement support for > error pages in their DRT's > <tonikitoo> ap,aroben: what do you think ? > <aroben> tonikitoo: that sounds pretty good to me > (...) FYI, filed follow up bugs for win, gtk and mac's implementations of error pages support into their DRTs: * MAC -> https://bugs.webkit.org/show_bug.cgi?id=31555 * GTK -> https://bugs.webkit.org/show_bug.cgi?id=31556 * WIN -> https://bugs.webkit.org/show_bug.cgi?id=31557
Note You need to log in before you can comment on or make changes to this bug.