Closed
Bug 1384020
Opened 8 years ago
Closed 8 years ago
Stylo: CSS targeting nested element on hover state doesn't work (quirksmode)
Categories
(Core :: CSS Parsing and Computation, defect)
Core
CSS Parsing and Computation
Tracking
()
VERIFIED
FIXED
mozilla56
| Tracking | Status | |
|---|---|---|
| firefox56 | --- | fixed |
People
(Reporter: rohitpaulk, Assigned: emilio)
References
(Blocks 1 open bug, )
Details
(Keywords: nightly-community)
Attachments
(2 files, 1 obsolete file)
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:56.0) Gecko/20100101 Firefox/56.0
Build ID: 20170724100311
Steps to reproduce:
- Using nightly. Version: 56.0a1 (2017-07-24) (64-bit).
- I've turned `layout.css.servo.enabled` on. When that setting is turned off, the bug is not reproducible.
Here's a test page:
```
<body>
<h2>Here's the bug</h2>
<div class="container">
<span class="remove-this-and-it-works">
<span class="only-on-hover">Only visible on hover</span>
</span>
<span>
Text should apper to the left when you hover on this.
</span>
</div>
<style>
.container .only-on-hover {
visibility: hidden;
color: red;
}
.container:hover .only-on-hover {
visibility: visible;
}
</style>
</body>
```
- I hovered on the text, triggering the :hover state on `.container`
Actual results:
- The `.only-on-hover` element's visibility did not change
Expected results:
- The `.only-on-hover` element's visibility should've changed to `visible`.
Summary: CSS targeting nested element on hover state doesn't work with stylo enabled → CSS targeting nested element on hover state doesn't work with servo enabled
Updated•8 years ago
|
Component: Untriaged → CSS Parsing and Computation
Summary: CSS targeting nested element on hover state doesn't work with servo enabled → Stylo: CSS targeting nested element on hover state doesn't work
Comment 1•8 years ago
|
||
Thank you! :)
Confirmed in Nightly 56 x64 20170725144053 @ Debian Testing.
Blocks: stylo-site-issues
Status: UNCONFIRMED → NEW
Has STR: --- → yes
Ever confirmed: true
Keywords: nightly-community
Version: 56 Branch → Trunk
| Assignee | ||
Comment 2•8 years ago
|
||
Huh, this is an interesting one... If I change it to be other kind of selector like a class, which should trigger a very similar invalidation pass, it does work.
And furthermore, I've verified that the invalidation pass works as intended, that is, finds the "only-on-hover" element, and marks it as dirty...
Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:56.0) Gecko/20100101 Firefox/56.0
Confirming. This bug is only in quirksmode for me, works in standards mode (with <!doctype html>).
(Changing summary)
Summary: Stylo: CSS targeting nested element on hover state doesn't work → Stylo: CSS targeting nested element on hover state doesn't work (quirksmode)
| Assignee | ||
Comment 4•8 years ago
|
||
Gah, I know why this is... Nazim, this is due to the :hover quirk.
| Assignee | ||
Updated•8 years ago
|
Assignee: nobody → emilio+bugs
| Comment hidden (mozreview-request) |
| Comment hidden (mozreview-request) |
| Assignee | ||
Updated•8 years ago
|
Attachment #8890097 -
Flags: review?(canaltinova)
Comment 7•8 years ago
|
||
| mozreview-review | ||
Comment on attachment 8890097 [details]
selectors: Fix note_next_sequence.
https://reviewboard.mozilla.org/r/161172/#review166514
Looks good. Thanks for fixing this!
Attachment #8890097 -
Flags: review?(canaltinova) → review+
Comment 8•8 years ago
|
||
| mozreview-review | ||
Comment on attachment 8890098 [details]
Bug 1384020: Test.
https://reviewboard.mozilla.org/r/161174/#review166516
Attachment #8890098 -
Flags: review?(canaltinova) → review+
| Assignee | ||
Comment 9•8 years ago
|
||
| Assignee | ||
Updated•8 years ago
|
Attachment #8890097 -
Attachment is obsolete: true
Comment 10•8 years ago
|
||
Pushed by ecoal95@gmail.com:
https://hg.mozilla.org/integration/autoland/rev/215c7f7ff026
Test. r=canaltinova
Comment 11•8 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 8 years ago
status-firefox56:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla56
Comment 12•8 years ago
|
||
Verified fixed in Nightly 56 x64 20170726100241 @ Debian testing. (Stylo: true (enabled by user))
The hidden text in attachment 8889774 [details] is shown on mouseover even with Stylo now.
Status: RESOLVED → VERIFIED
| Reporter | ||
Comment 13•8 years ago
|
||
Yay! That was quick :)
You need to log in
before you can comment on or make changes to this bug.
Description
•