WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
123468
Web Inspector: font-family names interpreted as color
https://bugs.webkit.org/show_bug.cgi?id=123468
Summary
Web Inspector: font-family names interpreted as color
Andreas Eldh
Reported
2013-10-29 14:19:13 PDT
I had "Crimson Text" as the font-family on body, and the word "Crimson" was treated as a color, with a red (crimson?) square next to it. Using Safari 7.0 (9537.71) on OS X Mavericks.
Attachments
Screenshot
(
deleted
)
2013-10-29 14:20 PDT
,
Andreas Eldh
no flags
Details
Patch
(1.58 KB, patch)
2015-06-10 13:31 PDT
,
Devin Rousso
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Radar WebKit Bug Importer
Comment 1
2013-10-29 14:19:38 PDT
<
rdar://problem/15345003
>
Andreas Eldh
Comment 2
2013-10-29 14:20:07 PDT
Created
attachment 215427
[details]
Screenshot
Joseph Pecoraro
Comment 3
2013-10-29 15:18:15 PDT
Heh. Well, to extend the "short term fix" we have in CSSStyleDeclarationTextEditor we have: // Act as a negative look-behind and disallow the color from being prefixing with certain characters. if (match.index > 0 && /[-.]/.test(lineContent[match.index - 1])) { match = colorRegex.exec(lineContent); continue; } We could include ['"] in that list of negative look-behind characters. But that wouldn't help "Foo Red Bar".
Joseph Pecoraro
Comment 4
2013-10-29 15:20:49 PDT
Now that I think about it, we have CodeMirror's tokenizer right now, but we are still regex checking lines: var lineContent = this._codeMirror.getLine(i); var match = colorRegex.exec(lineContent); … I think we be could just iterate over tokens instead of running the regex on the line?
Timothy Hatcher
Comment 5
2013-10-29 16:24:07 PDT
(In reply to
comment #4
)
> Now that I think about it, we have CodeMirror's tokenizer right now, but we are still regex checking lines: > > var lineContent = this._codeMirror.getLine(i); > var match = colorRegex.exec(lineContent); > … > > I think we be could just iterate over tokens instead of running the regex on the line?
That would work for color words and hex, but will need to have extra logic for rgb, etc.
Devin Rousso
Comment 6
2015-06-10 13:31:43 PDT
Created
attachment 254674
[details]
Patch
WebKit Commit Bot
Comment 7
2015-06-11 13:52:00 PDT
Comment on
attachment 254674
[details]
Patch Clearing flags on attachment: 254674 Committed
r185471
: <
http://trac.webkit.org/changeset/185471
>
WebKit Commit Bot
Comment 8
2015-06-11 13:52:04 PDT
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug