mirror of
https://github.com/servo/servo.git
synced 2025-06-10 01:23:13 +00:00
Cargoify servo
This commit is contained in:
parent
db2f642c32
commit
c6ab60dbfc
1761 changed files with 8423 additions and 2294 deletions
17
tests/html/test_class_helloworld.html
Normal file
17
tests/html/test_class_helloworld.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<html>
|
||||
<head>
|
||||
<style type="text/css">
|
||||
.c1 { color: red; }
|
||||
.c2 { background: blue; }
|
||||
#i1 { color: green; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<div id='i1'>Hello</div>
|
||||
<div class='c1'>World</div>
|
||||
<div class='c2'>Hello</div>
|
||||
<div class='c1 c2'>World</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue