diff options
Diffstat (limited to 'layout/reftests/details-summary/open-nested-details-ref.html')
-rw-r--r-- | layout/reftests/details-summary/open-nested-details-ref.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/details-summary/open-nested-details-ref.html b/layout/reftests/details-summary/open-nested-details-ref.html new file mode 100644 index 0000000000..75eada081a --- /dev/null +++ b/layout/reftests/details-summary/open-nested-details-ref.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<!-- Any copyright is dedicated to the Public Domain. + - http://creativecommons.org/publicdomain/zero/1.0/ --> + +<html> + <body> + <details open> + <summary>outer summary</summary> + <details open> + <summary>inner summary</summary> + <p>inner details</p> + <details open> + <summary>inner most summary</summary> + <p>inner most details</p> + </details> + </details> + <p>outer details</p> + </details> + </body> +</html> |