Skip to content

Instantly share code, notes, and snippets.

@pahlers
Forked from pmuellr/test-13.html
Created July 18, 2011 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pahlers/1089611 to your computer and use it in GitHub Desktop.
Save pahlers/1089611 to your computer and use it in GitHub Desktop.
test for weinre bug 13
<!DOCTYPE html>
<html>
<head>
<title>test for weinre bug 13</title>
<style>
.block{ /* this one is visible in the Styles side panel */
background-color: #f00;
color: #fff;
padding: 3em;
}
.hidden{ /* this one is visible in the Styles side panel */
display: none;
visible: hidden;
}
@media only screen and (min-width: 768px){
.block{ /* this rule isn't visible in the Style side panel. */
background-color: #0f0;
color: #000;
}
.hidden{ /* this rule isn't visible in the Style side panel. */
display: block;
visible: visible;
}
}
</style>
</head>
<body>
<div class="block">test for weinre bug 13</div>
<div class="block hidden">bigger than 786px</div>
</body>
</html>
@pahlers
Copy link
Author

pahlers commented Jul 18, 2011

I changed the test in a more html correct version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment