mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Cargoify servo
This commit is contained in:
parent
db2f642c32
commit
c6ab60dbfc
1761 changed files with 8423 additions and 2294 deletions
18
tests/ref/style_is_in_doc_ref.html
Normal file
18
tests/ref/style_is_in_doc_ref.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<style>
|
||||
.from_html { color: blue; }
|
||||
.append_later { color: green; }
|
||||
.text_set_later { color: yellow; }
|
||||
.is_not_in_doc { color: grey; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p class="from_html">Style from html element</p>
|
||||
<p class="append_later">Style from an element added in javascript</p>
|
||||
<p class="text_set_later">Style from an element with content set in javascript</p>
|
||||
<p class="is_not_in_doc">Style that is never in the document</p>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue