RESOLVED FIXED204874
[WinCairo] Improve Inspectable Target Page to adapt a long title and URL
https://bugs.webkit.org/show_bug.cgi?id=204874
Summary [WinCairo] Improve Inspectable Target Page to adapt a long title and URL
Yousuke Kimoto
Reported 2019-12-04 23:08:03 PST
When a target content which has long URL or long title and those lengths exceed the width of the list of inspectable webviews, an "inspect" button is placed outside of the web inspector's visible area. It make users irritate since they need to scroll to seek "Inspect" button at the most right of the page.
Attachments
patch (2.36 KB, patch)
2019-12-04 23:35 PST, Yousuke Kimoto
no flags
patch (2.38 KB, patch)
2019-12-05 01:13 PST, Yousuke Kimoto
no flags
patch (2.36 KB, patch)
2019-12-05 03:23 PST, Yousuke Kimoto
no flags
Yousuke Kimoto
Comment 1 2019-12-04 23:35:12 PST
Fujii Hironori
Comment 2 2019-12-05 00:10:28 PST
Comment on attachment 384881 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=384881&action=review > Source/WebKit/UIProcess/socket/RemoteInspectorProtocolHandler.cpp:160 > + " table, td { border: 1px solid #d3d7cf; border-left: none; border-right: none; table-layout: fixed;}" I think 'table-layout' should apply only to table element. Why do you want to apply it to td element? > Source/WebKit/UIProcess/socket/RemoteInspectorProtocolHandler.cpp:165 > + " .targeturl { width: auto; color: #babdb6; overflow: hidden; background: #eee; word-wrap: break-word; overflow-wrap: break-word; }" Why 'width: auto' is needed? Its initial value is 'auto'. Why 'overflow: hidden' is needed? You are using ellipsis and break-word. Can it overflow?
Yousuke Kimoto
Comment 3 2019-12-05 01:09:30 PST
(In reply to Fujii Hironori from comment #2) > > Source/WebKit/UIProcess/socket/RemoteInspectorProtocolHandler.cpp:160 > > + " table, td { border: 1px solid #d3d7cf; border-left: none; border-right: none; table-layout: fixed;}" > > I think 'table-layout' should apply only to table element. Why do you want > to apply it to td element? Thanks, the attribute should be applied in table element.. > > Source/WebKit/UIProcess/socket/RemoteInspectorProtocolHandler.cpp:165 > > + " .targeturl { width: auto; color: #babdb6; overflow: hidden; background: #eee; word-wrap: break-word; overflow-wrap: break-word; }" > > Why 'width: auto' is needed? Its initial value is 'auto'. > Why 'overflow: hidden' is needed? You are using ellipsis and break-word. Can > it overflow? 'width: auto' is unnecessary. I'll delete them.
Yousuke Kimoto
Comment 4 2019-12-05 01:13:13 PST
Fujii Hironori
Comment 5 2019-12-05 02:31:26 PST
Why 'overflow: hidden' is needed? You are using ellipsis and break-word. Can it overflow?
Yousuke Kimoto
Comment 6 2019-12-05 03:22:48 PST
(In reply to Fujii Hironori from comment #5) > Why 'overflow: hidden' is needed? You are using ellipsis and break-word. Can > it overflow? Sorry, I missed your comment. It's also unnecessary.
Yousuke Kimoto
Comment 7 2019-12-05 03:23:51 PST
Fujii Hironori
Comment 8 2019-12-05 03:38:22 PST
Comment on attachment 384894 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=384894&action=review > Source/WebKit/UIProcess/socket/RemoteInspectorProtocolHandler.cpp:164 > + " .targetname { font-weight: bold; overflow: hidden; white-space:nowrap; text-overflow: ellipsis; }" Do you need this 'overflow: hidden'? Can it overflow? Even though ellipsis is used.
Fujii Hironori
Comment 9 2019-12-05 03:58:48 PST
Comment on attachment 384894 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=384894&action=review >> Source/WebKit/UIProcess/socket/RemoteInspectorProtocolHandler.cpp:164 >> + " .targetname { font-weight: bold; overflow: hidden; white-space:nowrap; text-overflow: ellipsis; }" > > Do you need this 'overflow: hidden'? Can it overflow? Even though ellipsis is used. Ah, I misunderstood. It is needed.
Fujii Hironori
Comment 10 2019-12-05 04:01:23 PST
Comment on attachment 384894 [details] patch LGTM
Yousuke Kimoto
Comment 11 2019-12-05 17:24:59 PST
Thank you for your review.
WebKit Commit Bot
Comment 12 2019-12-05 18:14:18 PST
Comment on attachment 384894 [details] patch Clearing flags on attachment: 384894 Committed r253199: <https://trac.webkit.org/changeset/253199>
WebKit Commit Bot
Comment 13 2019-12-05 18:14:20 PST
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 14 2019-12-05 18:15:20 PST
Yousuke Kimoto
Comment 15 2019-12-08 19:09:55 PST
Memo: >>> + " .targetname { font-weight: bold; overflow: hidden; white-space:nowrap; text-overflow: ellipsis; }" >> >> Do you need this 'overflow: hidden'? Can it overflow? Even though ellipsis is used. > >Ah, I misunderstood. It is needed. I should have explained the latter case. The following page explains why 'overflow: hidden' is required. https://developer.mozilla.org/en-US/docs/Web/CSS/text-overflow >The text-overflow property doesn't force an overflow to occur. To make text overflow its container you have to set other CSS properties: overflow and white-space.
Note You need to log in before you can comment on or make changes to this bug.