mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 06:08:24 +02:00
./mach test-tidy should also check .html files, to avoid patches containing badly formatted new test cases go unnoticed --- - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #12421 - [X] There are tests for these changes (./mach test-tidy failed without the changes to .hrml files) Source-Repo: https://github.com/servo/servo Source-Revision: 93004ce57999947f51067d680c6fde056741331a
35 lines
876 B
HTML
35 lines
876 B
HTML
<!DOCTYPE html>
|
|
<!-- http://www.w3.org/TR/CSS21/visufx.html -->
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div {
|
|
overflow: hidden;
|
|
width : 100px; height: 100px;
|
|
border: thin solid red;
|
|
}
|
|
|
|
blockquote {
|
|
width : 125px; height : 100px;
|
|
margin-top: 50px; margin-left: 50px;
|
|
border: thin dashed black
|
|
}
|
|
|
|
cite {
|
|
display: block;
|
|
text-align : right;
|
|
border: none
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
<blockquote>
|
|
<p>I didn't like the play, but then I saw
|
|
it under adverse conditions - the curtain was up.</p>
|
|
<cite>- Groucho Marx</cite>
|
|
</blockquote>
|
|
</div>
|
|
</body>
|
|
</html>
|