diff options
Diffstat (limited to 'devtools/client/styleeditor/test/inline-1.html')
-rw-r--r-- | devtools/client/styleeditor/test/inline-1.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/devtools/client/styleeditor/test/inline-1.html b/devtools/client/styleeditor/test/inline-1.html new file mode 100644 index 0000000000..76478893b2 --- /dev/null +++ b/devtools/client/styleeditor/test/inline-1.html @@ -0,0 +1,19 @@ +<!doctype html> +<html> + <head> + <title>Inline test page #1</title> + <style type="text/css"> + .second { + font-size:2em; + } + </style> + <style type="text/css"> + .first { + font-size:3em; + } + </style> + </head> + <body class="first"> + Inline test page #1 + </body> +</html> |