Skip to content

Commit f7256e6

Browse files
Web Inspector: WebSockets: Don't clip data in the data grid
https://bugs.webkit.org/show_bug.cgi?id=170559 Reviewed by Timothy Hatcher. Long lines without spaces should be broken down into several lines instead of being ellipsized. * UserInterface/Views/WebSocketContentView.css: (.web-socket.content-view > .data-grid td.data-column,): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@215206 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 979c5ab commit f7256e6

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

Source/WebInspectorUI/ChangeLog

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
2017-04-10 Nikita Vasilyev <[email protected]>
2+
3+
Web Inspector: WebSockets: Don't clip data in the data grid
4+
https://bugs.webkit.org/show_bug.cgi?id=170559
5+
6+
Reviewed by Timothy Hatcher.
7+
8+
Long lines without spaces should be broken down into several lines instead of being ellipsized.
9+
10+
* UserInterface/Views/WebSocketContentView.css:
11+
(.web-socket.content-view > .data-grid td.data-column,):
12+
113
2017-04-10 Nikita Vasilyev <[email protected]>
214

315
Web Inspector: Placeholder text is clipped in the 'Enter Class Name' field at the bottom of Rules style sidebar in some localizations

Source/WebInspectorUI/UserInterface/Views/WebSocketContentView.css

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
.web-socket.content-view .data-grid td.data-column > div {
3737
height: auto;
3838
white-space: pre-wrap;
39+
overflow-wrap: break-word;
3940
}
4041

4142
body[dir=ltr] .web-socket.content-view > .data-grid .data-column > div {

0 commit comments

Comments
 (0)