mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
Make use of the list of Atoms in the class attribute selector (ClassSelector) in selector_matching. Fixes #3111
16 lines
209 B
HTML
16 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>
|