diff options
Diffstat (limited to 'layout/reftests/bugs/452964-1-ref.html')
-rw-r--r-- | layout/reftests/bugs/452964-1-ref.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/layout/reftests/bugs/452964-1-ref.html b/layout/reftests/bugs/452964-1-ref.html new file mode 100644 index 0000000000..6e0af83a62 --- /dev/null +++ b/layout/reftests/bugs/452964-1-ref.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html> + <head> + <style> + div { display: table; } + p { display: table-row; } + span { display: table-cell; } + </style> + </head> + <body> + <div> + <p> + <span>Test</span> + </p> + <p> + <span>Col 1</span> + <span>Col 2</span> + </p> + </div> + </body> +</html> |