all: can render basic things

This commit is contained in:
2017-08-28 19:22:08 +02:00
parent 3e91f8ed5b
commit 646714f0ab
9 changed files with 356 additions and 77 deletions

30
examples/test.html Normal file
View File

@@ -0,0 +1,30 @@
<html>
<head>
<style>
* { display: block; padding: 12px; }
.a { background: #ff0000; }
.b { background: #ffa500; }
.c { background: #ffff00; }
.d { background: #008000; }
.e { background: #0000ff; }
.f { background: #4b0082; }
.g { background: #800080; border-color: #808080; border-width: 3px; }
</style>
</head>
<body>
<div class="a">
<div class="b">
<div class="c">
<div class="d">
<div class="e">
<div class="f">
<div class="g">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>