summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/transforms/combine-rotate-and-transform-origin-expected.html
blob: 8c24fb38d26afd2682d37dfa774d5b7d66db8423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<style>
div {
    width: 100px;
    height: 100px;
    position: absolute;
    transform-origin: 100% 100%;
}

#expected {
    background-color: green;
    transform: rotate(90deg);
}
</style>

<p>There should be no red color boxes</p>
<div id="target"></div>
<div id="expected"></div>