summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/web/tests/data/nodeimage.html
blob: 846a2db43ccee0023cd02144b215e43e3bc156f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<div style="width: 40px">
    <div style="transform:translate(40px,40px)">
        <div draggable="true" id="case-css-transform" style="background-color: #00ff00;width: 40px;height: 40px;"></div>
    </div>
</div>

<div style="width: 40px">
    <div style="transform:translate(40px,40px) rotate3d(0,1,0,60deg);">
        <div draggable="true" id="case-css-3dtransform" style="background-color: #00ff00;width: 40px;height: 40px;"></div>
    </div>
</div>

<div style="width: 40px">
    <div style="display: inline-block">
        <div draggable="true" id="case-inlineblock" style="background-color: #00ff00;width: 40px;height: 40px;"></div>
    </div>
</div>

<div style="width: 40px">
    <div style="overflow: hidden">
        <div draggable="true" id="case-float-left-overflow-hidden" style="float: left;background-color: #00ff00;width: 40px;height: 40px;"></div>
    </div>
</div>