[Webkit-unassigned] [Bug 194673] Web Inspector: Search: allow DOM searches to be case sensitive

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Feb 14 14:23:28 PST 2019


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

--- Comment #3 from Devin Rousso <drousso at apple.com> ---
(In reply to Nikita Vasilyev from comment #2)
> (In reply to Devin Rousso from comment #0)
> > When searching for "DIV", we're still matching <div>.
> 
> This seems fine to me. What's the real-world use case here?
Ok maybe that was a bad example.  If I have

    <div class="CLASS">CONTENT"</div>

and I searched for "class" or "content", it would still match.  We are unable to do any sort of case sensitivity (we convert all queries to lowercase, as well as the text through which we're searching).

We could also _try_ to make regex searching work, but that's much harder to search across nodes (e.g. /><div>(\w+)<\/div/ wouldn't work).  If we limit the regex search to within a specific node (as it does now), then that shouldn't be too hard.

-- 
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/20190214/6af6fb3b/attachment-0001.html>


More information about the webkit-unassigned mailing list