This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* How to detect which element is the scrolling element in charge of scrolling the viewport: | |
* | |
* - in Quirks mode the scrolling element is the "body" | |
* - in Standard mode the scrolling element is the "documentElement" | |
* | |
* webkit based browsers always use the "body" element, disrespectful of the specifications: | |
* | |
* http://dev.w3.org/csswg/cssom-view/#dom-element-scrolltop | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>NWMatcher Test</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<script type="text/javascript" src="../../src/nwmatcher-noqsa.js"></script> | |
</head> | |
<body> | |
<div class="a"> | |
<div class="a1"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head><title>CSS and Selectors-API parsing differences</title> | |
<style> | |
/* these rules have a correct "selectorText" so their style declaration are applied */ | |
a[href="#"] { background-color: red; } /* style some elements */ | |
a:not([href="#"]) { background-color: lime; } /* style some elements */ | |
/* these rules have a incorrect "selectorText" so their style declaration are not applied */ | |
a:not([href="#"] { background-color: #f00; } /* doesn't style any element */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"/> | |
<title>Namespace testing</title> | |
<style> | |
body { font: 16px monospace; text-align: center; } | |
.table { display: table; border-width: 0 1px 1px 0; border-style: solid; border-color: #000; } | |
.row { display: table-row; border-width: 0 1px 1px 0; border-style: solid; border-color: #000; } |
OlderNewer