mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
16 lines
416 B
HTML
16 lines
416 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Basic User Interface Reference File</title>
|
|
<link rel="author" title="Intel" href="http://www.intel.com/">
|
|
<style>
|
|
#test {
|
|
border: 4px double green;
|
|
height: 150px;
|
|
margin: 26px;
|
|
width: 150px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>Test passes if there is a blank square whose border is <strong>two green solid lines</strong>.</p>
|
|
<div id="test"></div>
|
|
</body>
|