mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:17:35 +00:00
Base: Move all the HTML test content into /res/html/misc
This commit is contained in:
parent
4720635aab
commit
de12cf6821
58 changed files with 1 additions and 1 deletions
24
Base/res/html/misc/first-child.html
Normal file
24
Base/res/html/misc/first-child.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>:first-child test</title>
|
||||
<style>
|
||||
p:first-child {
|
||||
color: lime;
|
||||
background-color: black;
|
||||
padding: 5px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<p>This text is selected!</p>
|
||||
<p>This text isn't selected.</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2>This text isn't selected: it's not a `p`.</h2>
|
||||
<p>This text isn't selected.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue