67 lines
2.6 KiB
HTML
67 lines
2.6 KiB
HTML
<html id="html">
|
|
<head>
|
|
<script type="text/javascript" src="../lib/Test/Builder.js"></script>
|
|
<script type="text/javascript" src="../lib/Test/More.js"></script>
|
|
<script type="text/javascript" src="../lib/test.js"></script>
|
|
<script type="text/javascript" src="../../jquery/jquery-svn.js"></script>
|
|
</head>
|
|
<body id="body">
|
|
<h1>Custom Expressions</h1>
|
|
|
|
<!-- Test HTML -->
|
|
<div id="main" style="display: none;">
|
|
<p id="firstp">See <a id="simon1" href="http://simon.incutio.com/archive/2003/03/25/#getElementsBySelector" rel="bookmark">this blog entry</a>
|
|
for more information.</p>
|
|
<p id="ap">Here are some links in a normal paragraph:
|
|
<a id="google" href="http://www.google.com/" title="Google!">Google</a>,
|
|
<a id="groups" href="http://groups.google.com/">Google Groups</a>.
|
|
This link has <code><a href="#" id="anchor1">class="blog"</a></code>:
|
|
<a href="http://diveintomark.org/" class="blog" hreflang="en" id="mark">diveintomark</a>
|
|
</p>
|
|
<div id="foo">
|
|
<p id="sndp">Everything inside the red border is inside a div with
|
|
<code>id="foo"</code>.</p>
|
|
<p lang="en" id="en">This is a normal link:
|
|
<a id="yahoo" href="http://www.yahoo.com/" class="blogTest">Yahoo</a></p>
|
|
<p id="sap">This link has <code><a href="#2" id="anchor2">class="blog"</a></code>:
|
|
<a href="http://simon.incutio.com/" class="blog link" id="simon">Simon Willison's Weblog</a></p>
|
|
</div>
|
|
<p id="first">Try them out: </p>
|
|
<ol id="empty"></ol>
|
|
<form id="form">
|
|
<input type="hidden" value="Test" id="hidden"/>
|
|
<input type="text" value="Test" id="text1" style="display:none;"/>
|
|
<input type="text" value="Test" id="text2" disabled="disabled"/>
|
|
<input type="radio" name="radio1" id="radio1"/>
|
|
<input type="radio" name="radio2" id="radio2" checked/>
|
|
<input type="checkbox" name="check" id="check1" checked/>
|
|
<input type="checkbox" name="check" id="check2" style="visibility:hidden;"/>
|
|
</form>
|
|
</div>
|
|
|
|
<pre id="test"><script>
|
|
plan({tests: 11});
|
|
|
|
t( "nth Element", "p:nth(1)", ["ap"] );
|
|
t( "First Element", "p:first", ["firstp"] );
|
|
t( "Last Element", "p:last", ["first"] );
|
|
t( "Even Elements", "p:even", ["firstp","sndp","sap"] );
|
|
t( "Odd Elements", "p:odd", ["ap","en","first"] );
|
|
|
|
t( "Position Equals", "p:eq(1)", ["ap"] );
|
|
t( "Position Greater Than", "p:gt(0)",
|
|
["ap","sndp","en","sap","first"] );
|
|
t( "Position Less Than", "p:lt(3)",
|
|
["firstp","ap","sndp"] );
|
|
|
|
t( "Is A Parent", "p:parent",
|
|
["firstp","ap","sndp","en","sap","first"] );
|
|
|
|
t( "Is Visible", "input:visible",
|
|
["text2","radio1","radio2","check1"] );
|
|
t( "Is Hidden", "input:hidden",
|
|
["hidden","text1","check2"] );
|
|
</script></pre>
|
|
</body>
|
|
</html>
|