mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-22 22:45:42 -06:00
25 lines
501 B
HTML
25 lines
501 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>matchesSelector tests</title>
|
|
|
|
<link rel="stylesheet" href="bower_components/qunit/qunit/qunit.css" />
|
|
|
|
<script src="bower_components/qunit/qunit/qunit.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div id="alpha" class="item red"></div>
|
|
<div id="beta" class="item blue"></div>
|
|
<div id="gamma" class="item green"></div>
|
|
|
|
<div id="qunit"></div>
|
|
|
|
<script src="matches-selector.js"></script>
|
|
<script src="tests.js"></script>
|
|
|
|
</body>
|
|
</html>
|