diff options
author | Matt A. Tobin <email@mattatobin.com> | 2016-10-16 19:34:53 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2016-10-16 19:34:53 -0400 |
commit | 81805ce3f63e2e4a799bd54f174083c58a9b5640 (patch) | |
tree | 6e13374b213ac9b2ae74c25d8aac875faf71fdd0 /toolkit/devtools/eyedropper/test/color-block.html | |
parent | 28c8da71bf521bb3ee76f27b8a241919e24b7cd5 (diff) | |
download | palemoon-gre-81805ce3f63e2e4a799bd54f174083c58a9b5640.tar.gz |
Move Mozilla DevTools to Platform - Part 3: Merge the browser/devtools and toolkit/devtools adjusting for directory collisions
Diffstat (limited to 'toolkit/devtools/eyedropper/test/color-block.html')
-rw-r--r-- | toolkit/devtools/eyedropper/test/color-block.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/toolkit/devtools/eyedropper/test/color-block.html b/toolkit/devtools/eyedropper/test/color-block.html new file mode 100644 index 000000000..2444181fa --- /dev/null +++ b/toolkit/devtools/eyedropper/test/color-block.html @@ -0,0 +1,22 @@ +<!doctype html> +<html> +<head> + <title>basic eyedropper test case</title> + <style type="text/css"> + body { + background: #f99; + } + + #test { + margin: 100px; + background-color: blue; + width: 20px; + height: 20px; + } + </style> +</head> +<body> + <div id="test"> + </div> +</body> +</html> |