mirror of
https://github.com/servo/servo.git
synced 2025-06-11 10:00:18 +00:00
Make use of the list of Atoms in the class attribute selector (ClassSelector) in selector_matching. Fixes #3111
15 lines
209 B
HTML
15 lines
209 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
.bar {
|
|
height: 100px;
|
|
width: 100px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="foo bar baz foobar">
|
|
</div>
|
|
</body>
|
|
</html>
|