Issue 4826: Changing the ID of a node in HTML Panel doesn't update Element Path
Steps to reproduce
- Open Firebug
- Switch to the HTML panel
- Inspect the blue
<div>
above (#testnode
)
- Click the
id
attribute's value (testnode
)) to start inline editing
- Type
foo
-
Click somewhere outside the inline editor to stop inline editing
⇒ Inside the Element Path the node should be shown as div#foo
.
-
Click
section#content
inside the Element Path
⇒ The <section>
node (#content
) should be selected inside the HTML panel.
- Click the
id
attribute's value (foo
)) to start inline editing
- Type
bar
-
Click somewhere outside the inline editor to stop inline editing
⇒ Inside the Element Path the node should be shown as div#bar
.
Expected result
- The id of a node should always be updated inside the Element Path, when it's changed.