Closed
Bug 867699
Opened 12 years ago
Closed 7 years ago
Allow regular expressions for attribute name in find-by-attribute
Categories
(Other Applications :: DOM Inspector, enhancement)
Other Applications
DOM Inspector
Tracking
(Not tracked)
RESOLVED
INCOMPLETE
People
(Reporter: crussell, Unassigned)
Details
(Colby Russell :crussell wrote in comment #4)
> Comment on attachment 744079 [details] [diff] [review]
> Proposed patch
>
> Review of attachment 744079 [details] [diff] [review]:
> -----------------------------------------------------------------
>
> ::: resources/content/viewers/dom/dom.js
> @@ +953,5 @@
> >
> > return aWalker.currentNode &&
> > aWalker.currentNode.nodeType == nsIDOMNode.ELEMENT_NODE &&
> > + aWalker.currentNode.hasAttribute(this.mFindParams[0]) &&
> > + re.test(aWalker.currentNode.getAttribute(this.mFindParams[0]));
>
> Weird that we allow regular expressions everywhere else except this field's
> value for this type of search...
1. Open a page with elements containing on* event listener attributes (onload, et cetera). Use this page, for example.
2. Open the find dialog and switch to search by attribute.
3. Type "^on" in the name field and leave the value blank.
4. Search.
Expected results:
Search iterates through all nodes containing on* event listener attributes. As of this writing, the body element has an onload attribute, so it should stop there first if you tried it on this page.
Actual results:
No matches. "End of document reached".
Comment 1•12 years ago
|
||
Dupe of bug 865008
Comment 2•12 years ago
|
||
Oops! Wrong tab
Comment 3•7 years ago
|
||
Bulk close. This component is no longer supported or maintained.
https://bugzilla.mozilla.org/show_bug.cgi?id=1499023
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → INCOMPLETE
Comment 4•7 years ago
|
||
Bulk close. This component is no longer supported or maintained.
https://bugzilla.mozilla.org/show_bug.cgi?id=1499023
You need to log in
before you can comment on or make changes to this bug.
Description
•