Add ref test for nested inline elements

This commit is contained in:
Brendan Zabarauskas 2014-05-21 09:53:23 -07:00
parent fe28e20bca
commit d6d36997c6
3 changed files with 48 additions and 0 deletions

View file

@ -71,3 +71,4 @@
== setattribute_id_restyle_a.html setattribute_id_restyle_b.html
== pseudo_element_a.html pseudo_element_b.html
== linebreak_simple_a.html linebreak_simple_b.html
== linebreak_inline_span_a.html linebreak_inline_span_b.html

View file

@ -0,0 +1,24 @@
<html>
<head>
<style type="text/css">
* {
margin: 0px;
padding: 0px;
}
</style>
</head>
<body>
<blockquote>
The <span>most terrifying</span> fact about the universe <span>is not that
it is hostile but that it is indifferent;</span> but if we can come to terms
with this indifference and accept the<span> challenges</span> of <span>life
<span>within</span></span> the boundaries of death - <span>however</span>
mutable man may be able to make them - our existence as a species can have
genuine meaning and fulfillment. However vast the darkness, we must supply
our own light.
<footer>
<cite>Stanley Kubrick</cite>
</footer>
</blockquote>
</body>
</html>

View file

@ -0,0 +1,23 @@
<html>
<head>
<style type="text/css">
* {
margin: 0px;
padding: 0px;
}
</style>
</head>
<body>
<blockquote>
The most terrifying fact about the universe is not that it is hostile but
that it is indifferent; but if we can come to terms with this indifference
and accept the challenges of life within the boundaries of death - however
mutable man may be able to make them - our existence as a species can have
genuine meaning and fulfillment. However vast the darkness, we must supply
our own light.
<footer>
<cite>Stanley Kubrick</cite>
</footer>
</blockquote>
</body>
</html>