servo/tests/ref/multiple_css_class_b.html
Gilles Leblanc 81a0d065f1 Make use of the list of Atoms in ClassSelector
Make use of the list of Atoms in the class attribute selector
(ClassSelector) in selector_matching.

Fixes #3111
2014-09-11 23:19:26 -04:00

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>