summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css-generated-content/box-orient-expected.html
blob: 0103cfca2e241d660dca17f679b4b4e08fe5bf87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>

<style>
.before {
  background:red;
}
</style>

<h1>Normal</h1>
<div>
  <div class="before">Before content</div>
  <div>1st in code - 1nd in order</div>
  <div>2nd in code - 2nd in order</div>
</div>

<h1>Reordered</h1>
<div>
  <div class="before">Before content</div>
  <div>2nd in code - 1st in order</div>
  <div>1st in code - 2nd in order</div>
</div>