Skip to content

Commit 4c91238

Browse files
committed
Refactoring, bugfixing, unit tests and benchmark
1 parent d85259b commit 4c91238

32 files changed

+59267
-278
lines changed

.gitmodules

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "test/qunit"]
2+
path = test/qunit
3+
url = https://github.com/jquery/qunit
4+
[submodule "speed/benchmark.js"]
5+
path = speed/benchmark.js
6+
url = git://github.com/bestiejs/benchmark.js.git

README.md

+15-6
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
- document.documentElement.matches
2121
- Element.prototype.querySelector
2222
- Element.prototype.querySelectorAll
23-
- Element.prototype.getElementsByClassName
23+
- Element.prototype.getElementsByClassName for IE < 9
2424
- Element.prototype.matchesSelector
2525
- Element.prototype.matches
2626

@@ -47,6 +47,20 @@ document.querySelector("div div:scope a")
4747
### Reference combination
4848
Working on it
4949

50+
## Installation
51+
- Without IE6/7 support:
52+
53+
<script src="__COMPILED/CSS_selector_engine.js"></script>
54+
55+
- With IE6/7 support:
56+
57+
<!--[if lt IE 8]>
58+
<script src="__COMPILED/CSS_selector_engine.ielt8.js"></script>
59+
<![endif]-->
60+
<!--[if gt IE 7]><!-->
61+
<script src="__COMPILED/CSS_selector_engine.js"></script>
62+
<!--<![endif]-->
63+
5064
## Using in IE < 8
5165

5266
```javascript
@@ -71,11 +85,6 @@ The are few [GGC](http://closure-compiler.appspot.com/home) flags in script. You
7185

7286
set the value of '\_\_GCC\_\_NOT\_ONLY\_IELT8\_SUPPORT\_\_' to 'true' and compile _CSS\_selector\_engine.js_ using [Google Closure Compiler](http://closure-compiler.appspot.com/home)
7387

74-
## TODO
75-
76-
- Tests: coming soon
77-
- Benchmark: coming soon
78-
7988
## License
8089

8190
MIT

__COMPILED/CSS_selector_engine.ielt8.js

+21-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

__COMPILED/CSS_selector_engine.js

+22-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)