Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
michael@0 | 1 | <!-- |
michael@0 | 2 | Any copyright is dedicated to the Public Domain. |
michael@0 | 3 | http://creativecommons.org/publicdomain/zero/1.0/ |
michael@0 | 4 | --> |
michael@0 | 5 | <!DOCTYPE html> |
michael@0 | 6 | <title>CSS Test: Test using variables in overlapping shorthands.</title> |
michael@0 | 7 | <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au"> |
michael@0 | 8 | <link rel="help" href="http://www.w3.org/TR/css-variables-1/#variables-in-shorthands"> |
michael@0 | 9 | <link rel="match" href="variable-declaration-59-ref.html"> |
michael@0 | 10 | <style> |
michael@0 | 11 | p { padding-left: 1em; } |
michael@0 | 12 | #a { --style: solid; --left: black dotted; border-style: var(--style); border-left: var(--left); border-top: none; border-right: none; border-bottom: none; } |
michael@0 | 13 | #b { --style: solid; --left: black dotted; border-left: var(--left); border-style: var(--style); border-top: none; border-right: none; border-bottom: none; } |
michael@0 | 14 | </style> |
michael@0 | 15 | <p id=a>The left border must be dotted.</p> |
michael@0 | 16 | <p id=b>The left border must be solid.</p> |