diff options
author | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-29 02:16:06 +0000 |
---|---|---|
committer | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-29 02:16:06 +0000 |
commit | b46442d7e2e8cccf5f9bcafb2e1e3b7cf23d424b (patch) | |
tree | e1e0f0d2fc3653d71e93b4cca71cce5ea2cb7223 /content/browser/debugger/manual_tests/highlight-nodes.html | |
parent | 75a4e77f6c2c21706c09948269c45d98db28757b (diff) | |
download | chromium_src-b46442d7e2e8cccf5f9bcafb2e1e3b7cf23d424b.zip chromium_src-b46442d7e2e8cccf5f9bcafb2e1e3b7cf23d424b.tar.gz chromium_src-b46442d7e2e8cccf5f9bcafb2e1e3b7cf23d424b.tar.bz2 |
Wholesale move of debugger sources to content.
Other references are modified only to point to the new
location. Follow-up changes will move build rules for the debugger
into content.
This adds a somewhat permissive DEPS file to
content/browser/debugger. Follow-up work will whittle that down to
zero dependencies on chrome/.
BUG=84078
TEST=existing
Review URL: http://codereview.chromium.org/7274031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90912 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/debugger/manual_tests/highlight-nodes.html')
-rw-r--r-- | content/browser/debugger/manual_tests/highlight-nodes.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/content/browser/debugger/manual_tests/highlight-nodes.html b/content/browser/debugger/manual_tests/highlight-nodes.html new file mode 100644 index 0000000..cbeae6f --- /dev/null +++ b/content/browser/debugger/manual_tests/highlight-nodes.html @@ -0,0 +1,23 @@ +<style> +.skewed { + -webkit-transform:skew(-5deg,-5deg); +} +</style> +<p>This page has basic tests of node highlighting in the inspected page. To test, load this page, open the DevTools and mouseover the nodes in the treeview of the inspector. You should see the highlights happen with the appropriate padding/border/margin/content highlights.</p> +<div style="padding:10px; border: 10px solid; margin: 10px;">padding:10px; border: 10px; margin: 10px;</div> +<div style="padding:10px; border: 10px solid;">padding:10px; border: 10px;</div> +<div style="padding:10px; margin: 10px;">padding:10px; margin: 10px;</div> +<div style="border: 10px solid; margin: 10px;">border: 10px; margin: 10px;</div> +<div style="padding:10px">padding:10px;</div> +<div style="border: 10px solid;">border: 10px;</div> +<div style="margin: 10px;">margin: 10px;</div> +<div>no padding, border, or margin</div> +<div class=skewed style="padding:10px; border: 10px solid; margin: 10px;">-webkit-transform:skew(-5deg,-5deg); padding:10px; border: 10px; margin: 10px;</div> +<div class=skewed style="padding:10px; border: 10px solid;">-webkit-transform:skew(-5deg,-5deg); padding:10px; border: 10px;</div> +<div class=skewed style="padding:10px; margin: 10px;">-webkit-transform:skew(-5deg,-5deg); padding:10px; margin: 10px;</div> +<div class=skewed style="border: 10px solid; margin: 10px;">-webkit-transform:skew(-5deg,-5deg); border: 10px; margin: 10px;</div> +<div class=skewed style="padding:10px">-webkit-transform:skew(-5deg,-5deg); padding:10px;</div> +<div class=skewed style="border: 10px solid;">-webkit-transform:skew(-5deg,-5deg); border: 10px;</div> +<div class=skewed style="margin: 10px;">-webkit-transform:skew(-5deg,-5deg); margin: 10px;</div> +<div class=skewed >-webkit-transform:skew(-5deg,-5deg); no padding, border, or margin</div> + |