Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / css / variables / cssom-update-style.html
1 <!doctype html>
2
3 <style>
4     div {
5         background-color: var(color);
6         border-style: var(border);
7     }
8 </style>
9
10 <div id="outer" style="var-color: darkred; var-border: dashed">
11     This div should be green with a solid border.
12     <div>This div should also be green with a solid border.</div>
13 </div>
14
15 <script>
16 var outer = document.querySelector("#outer");
17
18 outer.style.var.set("color", "green");
19 outer.style.var.set("border", "solid");
20
21 </script>