Closed
Bug 1374704
Opened 8 years ago
Closed 8 years ago
The combination "script#string" in script filter doesn't work
Categories
(DevTools :: Debugger, defect)
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: regspam, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 6.0; rv:52.0) Gecko/20100101 Firefox/52.0
Build ID: 20170607123825
Steps to reproduce:
On https://developer.mozilla.org/en-US/docs/Tools/Debugger_(Before_Firefox_52)/How_to/Search_and_filter, there's a mention of the ability to combine prefixes in script filter: "mod#onLoad Find the string "onLoad" in all files containing "mod" in their name."
1) Create the three files (the contents of the files are given between the "---"s):
1. main.html
---
<html>
<head>
<script src="a1.js"></script>
<script src="a2.js"></script>
<meta charset="utf-8">
</head>
<body>
<script>
var var_main;
</script>
</body>
</html>
---
2. a1.js:
---
var var_a1;
---
3. a2.js:
---
var var_a2;
---
2) Open main.html, open Debugger. In script filter type "a#var_a" (no quotes).
No results (the strings "var var_a1;" and "var var_a2;" from the files a1.js and a2.js correspondingly) are shown. Instead, a drop-down list with all the three filenames appears.
Sorry, forgot to add that I use the pre-52 version of Debugger ("devtools.debugger.new-debugger-frontend" is set to "false").
Comment 2•8 years ago
|
||
Thanks for the bug report, but we're no longer fixing the old debugger UI bugs.
Status: UNCONFIRMED → RESOLVED
Closed: 8 years ago
Resolution: --- → WONTFIX
Updated•8 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•