1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-26 16:45:12 -04:00

test files for html { } and body { }

This commit is contained in:
witekfl 2012-05-22 14:15:24 +02:00
parent 7328bb9c9e
commit ce48dc5ffd
2 changed files with 20 additions and 0 deletions

10
test/css/css_body.html Normal file
View File

@ -0,0 +1,10 @@
<html>
<head>
<style type="text/css">
body { background-color: green }
</style>
</head>
<body>
<p>body { background-color: green }</p>
</body>
</html>

10
test/css/css_html.html Normal file
View File

@ -0,0 +1,10 @@
<html>
<head>
<style type="text/css">
html { background-color: green }
</style>
</head>
<body>
<p>html { background-color: green }</p>
</body>
</html>