[Webkit-unassigned] [Bug 141692] Web Inspector: Styles sidebar editing with incomplete property looks poor in UI

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Mar 10 08:26:11 PDT 2015


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

--- Comment #11 from tobi+bugzilla at basecode.de ---
I'm still not happy with my patch. What I really want to do is the following:

- Listen on onLineChange and onPaste
- Parse the line and add missing new line characters, colons and semi-colons.

A parser should be able to convert:
- key: value => key: value;\n
- key; => key:;\n
- /* key:value; key2:value2 */ => /* key: value; */\n/* key2: value2; */\n
- key:value /* key: value; */ => key: value; /* key: value; */

Questions:
- Where can I listen on "onLineChange" and "onPaste"? _reset doesn't seem to be the correct place. It's not called onLineChange.
- Are you okay with the mentioned spec for the parser?

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20150310/64f44718/attachment-0002.html>


More information about the webkit-unassigned mailing list