gopycc / ie7-js

Automatically exported from code.google.com/p/ie7-js
0 stars 0 forks source link

selectors & pseudo classes conflict #397

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?

use: selectors & pseudo classes

exp: E[foo^="bar"]:hover {background: red;}

What is the expected output? What do you see instead?

No respone.

What version of the product are you using? On what operating system?

I use ie7-2.1(beta4)-ie9.js

Original issue reported on code.google.com by d2loa...@gmail.com on 28 May 2014 at 10:15

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
Failed:
div[foo = "bar"]:hover
div[foo $= "bar"]:hover

OK:
div[foo ~= "bar"]:hover
div[foo |= "bar"]:hover
div[foo ^= "bar"]:hover
div[foo *= "bar"]:hover

Original comment by d2loa...@gmail.com on 29 May 2014 at 8:48

Attachments:

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
Bug Fixed!

Original comment by d2loa...@gmail.com on 30 May 2014 at 1:38

Attachments: