diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-values/calc-width-table-auto-1-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-values/calc-width-table-auto-1-ref.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-values/calc-width-table-auto-1-ref.html b/testing/web-platform/tests/css/css-values/calc-width-table-auto-1-ref.html new file mode 100644 index 0000000000..d5a129dd02 --- /dev/null +++ b/testing/web-platform/tests/css/css-values/calc-width-table-auto-1-ref.html @@ -0,0 +1,27 @@ +<!DOCTYPE HTML> +<html> +<head> + <title>CSS Reference: width: calc() on table-layout: auto tables</title> + <link rel="author" title="L. David Baron" href="https://dbaron.org/"> +<table border> + <tr> + <td style="width: 500px">x</td> + <td style="width: 100px">y</td> +</table> +<table border> + <tr> + <td>x</td> + <td style="width: 100px">y</td> +</table> +<table border> + <tr> + <td style="width: 50%">x</td> + <td style="width: 100px">y</td> +</table> +<table border> + <tr> + <td>x</td> + <td style="width: 100px">y</td> +</table> +</body> +</html> |