diff options
Diffstat (limited to 'devtools/client/styleeditor/test/media.html')
-rw-r--r-- | devtools/client/styleeditor/test/media.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devtools/client/styleeditor/test/media.html b/devtools/client/styleeditor/test/media.html new file mode 100644 index 000000000..ef05818c5 --- /dev/null +++ b/devtools/client/styleeditor/test/media.html @@ -0,0 +1,11 @@ +<!doctype html> +<html> +<head> + <link rel="stylesheet" type="text/css" href="simple.css" media="screen,print"/> + <link rel="stylesheet" type="text/css" href="media-small.css" media="screen and (min-width: 200px)"/> +</head> +<body> + <div>test for media labels</div> +</body> +</html> + |