Closed Bug 1724562 Opened 3 years ago Closed 1 year ago

Debugging tooltips not displayed in embedded <script type="module">

Categories

(DevTools :: Debugger, defect, P3)

Firefox 90
defect

Tracking

(firefox117 verified, firefox118 verified)

VERIFIED FIXED
117 Branch
Tracking Status
firefox117 --- verified
firefox118 --- verified

People

(Reporter: jeremy.leland, Assigned: bomsy)

References

(Blocks 1 open bug)

Details

Attachments

(3 files)

User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36

Steps to reproduce:

  1. Create an HTML file with an embedded <script type="module">
  2. Open the developer tools and set a breakpoint following some variables assignments in the script
  3. Reload the page
  4. When the debugger hits the breakpoint, hover over variables to see their value in a tooltip

Actual results:

When <script type="module">, no tooltip is displayed. (Note that the Scopes pane is still able to show the values correctly.)

Expected results:

A tooltip showing the variable's value should have been displayed. When the same code is embedded as just <script> (without type="module") the tooltips display correctly.

The Bugbug bot thinks this bug should belong to the 'Core::JavaScript Engine' component, and is moving the bug to that component. Please revert this change in case you think the bot is wrong.

Component: Untriaged → JavaScript Engine
Product: Firefox → Core
Component: JavaScript Engine → Debugger
Product: Core → DevTools
Flags: needinfo?(hmanilla)

Thanks for reporting! I can reproduce this.

Adding another STR

  1. Go to https://absorbed-tree-consonant.glitch.me/
  2. Open the debugger
  3. In the sources tree, select the (index) file
  4. Set breakpoints on line 24 (in function foo) and 31 (in function bar)
  5. Refresh the page
  6. After break point on line 24 is hit, hover over val1
  7. A tooltip with 3 should be displayed.
  8. Click resume
  9. After break point on line 31 is hit, hover over val2.

AR
No tooltip is displayed

ER

A tooltip with 4 should be displayed.

Severity: -- → S3
Flags: needinfo?(hmanilla)
Priority: -- → P3
No longer blocks: dbg-sourcemap

This most likely comes from the parse-script-tags npm package that we pull from here:
https://searchfox.org/mozilla-central/rev/59f0bf3c13dd455d9f5415b89178de701ea6b850/devtools/client/debugger/package.json#27

Over there:
https://searchfox.org/mozilla-central/rev/59f0bf3c13dd455d9f5415b89178de701ea6b850/devtools/client/debugger/src/workers/parser/utils/ast.js#149

  ast = parseScriptTags(source.text, htmlParser) || {};

htmlParser is called for regular script tags, and isn't for module script tags.

I suspect that this npm package doesn't support the later.

Two useful test pages:
data:text/html,<script type="module">%0Abar(4);%0Afunction bar(val2) {%0Aconsole.log(val2%0A)}%0Aexport default bar;%0A</script>
data:text/html,<script>%0Abar(4);%0Afunction bar(val2) {%0Aconsole.log(val2%0A)}%0A</script>

We should probably:

  • land this npm package in tree, in debugger/packages folder
  • review why we forked (diff against upstream)
  • investigate why it doesn't support type="module".
Assignee: nobody → hmanilla
Status: UNCONFIRMED → ASSIGNED
Ever confirmed: true
Attachment #9342093 - Attachment description: WIP: Bug 1724562 - [devtools] Add parse-script-tags module to MC → WIP: Bug 1724562 - [devtools] Add parse-script-tags module to the parser utils

Depends on D182665

Attachment #9342093 - Attachment description: WIP: Bug 1724562 - [devtools] Add parse-script-tags module to the parser utils → Bug 1724562 - [devtools] Move parse-script-tags module to the parser utils file r=#devtools-reviewers
Attachment #9342991 - Attachment description: WIP: Bug 1724562 - [devtools] Support parsing js modue scripts → Bug 1724562 - [devtools] Fix tooltip and inline previews for module scripts r=#devtools-reviewers
Pushed by hmanilla@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/f15cc86278f2
[devtools] Move parse-script-tags module to the parser utils file r=devtools-reviewers,ochameau
https://hg.mozilla.org/integration/autoland/rev/b0453b60b7d7
[devtools] Fix tooltip and inline previews for module scripts r=devtools-reviewers,nchevobbe
Status: ASSIGNED → RESOLVED
Closed: 1 year ago
Resolution: --- → FIXED
Target Milestone: --- → 117 Branch

== Change summary for alert #39041 (as of Tue, 18 Jul 2023 00:03:34 GMT) ==

Improvements:

Ratio Test Platform Options Absolute values (old vs new)
12% damp simple.jsdebugger.open.DAMP linux1804-64-shippable-qr e10s fission stylo webrender 551.68 -> 487.26
10% damp simple.jsdebugger.open.DAMP linux1804-64-shippable-qr e10s fission stylo webrender-sw 529.69 -> 474.43
10% damp simple.jsdebugger.open.DAMP windows10-64-shippable-qr e10s fission stylo webrender-sw 425.02 -> 381.89
10% damp simple.jsdebugger.open.DAMP windows10-64-shippable-qr e10s fission stylo webrender 431.12 -> 387.57
10% damp cold.jsdebugger.open.DAMP linux1804-64-shippable-qr e10s fission stylo webrender 667.32 -> 601.16
... ... ... ... ...
4% damp simple.jsdebugger.reload.DAMP windows10-64-shippable-qr e10s fission stylo webrender 200.14 -> 192.75

For up to date results, see: https://treeherder.mozilla.org/perfherder/alerts?id=39041

QA Whiteboard: [qa-117b-p2]

Reproducible on a 2023-07-13 Nightly build on Windows 10.
Verified as fixed on Firefox 117.0b5(build ID: 20230808215502) and Nightly 118.0a1(build ID: 20230809213044) on Windows 10, macOS 12. Ubuntu 22.

Status: RESOLVED → VERIFIED
QA Whiteboard: [qa-117b-p2]
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Creator:
Created:
Updated:
Size: