mirror of
https://github.com/servo/servo
synced 2026-05-09 00:22:16 +02:00
Make use of the list of Atoms in the class attribute selector (ClassSelector) in selector_matching. Fixes #3111
20 lines
243 B
HTML
20 lines
243 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
.foo {
|
|
height: 100px;
|
|
}
|
|
.bar {
|
|
width: 100px;
|
|
}
|
|
.baz {
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="foo bar baz foobar">
|
|
</div>
|
|
</body>
|
|
</html>
|