mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-29 06:02:07 +03:00
Base: Add a little web test page for inline elements with CSS padding
This commit is contained in:
parent
f35b406dfb
commit
017490aa7f
Notes:
sideshowbarker
2024-07-19 01:04:13 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/017490aa7f9
15
Base/res/html/misc/padding-inline.html
Normal file
15
Base/res/html/misc/padding-inline.html
Normal file
@ -0,0 +1,15 @@
|
||||
<style>
|
||||
span {
|
||||
padding-left: 20px;
|
||||
padding-right: 40px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
background-color: red;
|
||||
border: 3px solid black;
|
||||
color: white;
|
||||
}
|
||||
</style>
|
||||
<div>
|
||||
<span>Hello friends!</span>
|
||||
<span>This span has padding!</span>
|
||||
</div>
|
@ -35,6 +35,7 @@ span#loadtime {
|
||||
<p>This page loaded in <b><span id="loadtime"></span></b> ms</p>
|
||||
<p>Some small test pages:</p>
|
||||
<ul>
|
||||
<li><a href="padding-inline.html">inline elements with padding</a></li>
|
||||
<li><a href="event-bubbling-and-multiple-listeners.html">event bubbling and multiple listeners</a></li>
|
||||
<li><a href="checkbox.html">checkbox</a></li>
|
||||
<li><a href="canvas-rotate.html">canvas rotate()</a></li>
|
||||
|
Loading…
Reference in New Issue
Block a user