2006-08-14 03:46:05 +02:00
< html id = "html" >
2006-08-13 17:24:52 +02:00
< head >
2007-03-25 01:58:19 +01:00
< meta http-equiv = "Content-Type" content = "text/css; charset=utf-8" / >
2006-11-18 14:37:01 +01:00
< title > jQuery Test Suite< / title >
< link rel = "Stylesheet" media = "screen" href = "data/testsuite.css" / >
2006-08-14 03:46:05 +02:00
< script type = "text/javascript" src = "../dist/jquery.js" > < / script >
2006-09-19 11:49:22 +02:00
< script type = "text/javascript" src = "data/testrunner.js" > < / script >
2006-11-18 14:37:01 +01:00
< script type = "text/javascript" src = "../src/jquery/coreTest.js" > < / script >
2006-12-31 19:09:05 +01:00
< script type = "text/javascript" src = "../src/selector/selectorTest.js" > < / script >
2006-11-18 14:37:01 +01:00
< script type = "text/javascript" src = "../src/event/eventTest.js" > < / script >
< script type = "text/javascript" src = "../src/ajax/ajaxTest.js" > < / script >
< script type = "text/javascript" src = "../src/fx/fxTest.js" > < / script >
2006-08-13 17:24:52 +02:00
< / head >
2006-11-18 14:37:01 +01:00
2006-08-14 03:46:05 +02:00
< body id = "body" >
2007-01-14 23:36:54 +01:00
< h1 > jQuery Test Suite< / h1 >
2006-11-20 21:54:42 +01:00
< h2 id = "banner" > < / h2 >
2006-10-26 12:58:23 +02:00
< h2 id = "userAgent" > < / h2 >
2006-08-14 03:46:05 +02:00
<!-- Test HTML -->
< dl style = "display:none;" >
< 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 > .
2006-12-30 11:13:14 +01:00
This link has < code > < a href = "http://smin" id = "anchor1" > class="blog"< / a > < / code > :
2006-08-14 03:46:05 +02:00
< a href = "http://diveintomark.org/" class = "blog" hreflang = "en" id = "mark" > diveintomark< / a >
2006-08-13 17:24:52 +02:00
2006-08-14 03:46:05 +02:00
< / p >
< div id = "foo" >
2006-09-04 06:51:57 +02:00
< 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 >
2007-01-31 22:56:32 +01:00
< 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 >
2006-08-14 03:46:05 +02:00
2006-10-17 17:34:19 +02:00
< / div >
< p id = "first" > Try them out:< / p >
2006-08-14 03:46:05 +02:00
< ul id = "firstUL" > < / ul >
< ol id = "empty" > < / ol >
2006-10-17 17:34:19 +02:00
< form id = "form" action = "formaction" >
2006-09-30 16:34:49 +02:00
< input type = "text" name = "action" value = "Test" id = "text1" / >
< input type = "text" name = "text2" value = "Test" id = "text2" disabled = "disabled" / >
2006-08-14 03:46:05 +02:00
< input type = "radio" name = "radio1" id = "radio1" / >
2006-10-03 11:40:16 +02:00
< input type = "radio" name = "radio2" id = "radio2" checked = "checked" / >
< input type = "checkbox" name = "check" id = "check1" checked = "checked" / >
2006-09-16 16:57:15 +02:00
< input type = "checkbox" id = "check2" / >
2006-08-14 03:46:05 +02:00
< input type = "hidden" name = "hidden" id = "hidden1" / >
2006-10-17 17:34:19 +02:00
< input type = "text" style = "display:none;" name = "foo[bar]" id = "hidden2" / >
< input type = "text" id = "name" name = "name" value = "name" / >
< button id = "button" name = "button" > Button< / button >
< textarea id = "area1" > foobar< / textarea >
< select name = "select1" id = "select1" >
< option id = "option1a" value = "" > Nothing< / option >
< option id = "option1b" value = "1" > 1< / option >
< option id = "option1c" value = "2" > 2< / option >
< option id = "option1d" value = "3" > 3< / option >
< / select >
< select name = "select2" id = "select2" >
< option id = "option2a" value = "" > Nothing< / option >
< option id = "option2b" value = "1" > 1< / option >
< option id = "option2c" value = "2" > 2< / option >
< option id = "option2d" selected = "selected" value = "3" > 3< / option >
< / select >
< select name = "select3" id = "select3" multiple = "multiple" >
< option id = "option3a" value = "" > Nothing< / option >
< option id = "option3b" selected = "selected" value = "1" > 1< / option >
< option id = "option3c" selected = "selected" value = "2" > 2< / option >
< option id = "option3d" value = "3" > 3< / option >
2006-09-04 06:51:57 +02:00
< / select >
2007-01-03 21:48:40 +01:00
< object id = "object1" codebase = "stupid" >
2007-01-07 11:26:58 +01:00
< param name = "p1" value = "x1" / >
< param name = "p2" value = "x2" / >
2007-01-03 21:48:40 +01:00
< / object >
2007-03-25 01:58:19 +01:00
< span id = "台北Táiběi" > < / span >
< span id = "台北" lang = "中文" > < / span >
< span id = "utf8class1" class = "台北Táiběi 台北" > < / span >
< span id = "utf8class2" class = "台北" > < / span >
2007-03-25 21:02:31 +02:00
< span id = "foo:bar" class = "foo:bar" > < / span >
< span id = "test.foo[5]bar" class = "test.foo[5]bar" > < / span >
2007-04-28 17:39:30 +02:00
< foo_bar id = "foobar" > test element< / foo_bar >
2006-08-14 03:46:05 +02:00
< / form >
2006-10-17 21:12:22 +02:00
< b id = "floatTest" > Float test.< / b >
2007-03-25 21:02:31 +02:00
< iframe id = "iframe" name = "iframe" > < / iframe >
< form id = "lengthtest" >
< input type = "text" id = "length" name = "test" >
2007-05-13 19:20:03 +02:00
< input type = "text" id = "idTest" name = "id" >
2007-03-25 13:52:53 +02:00
< / form >
2007-04-30 15:13:01 +02:00
< table id = "table" > < / table >
2006-08-14 03:46:05 +02:00
< / div >
< / dl >
< ol id = "tests" > < / ol >
2006-08-13 17:24:52 +02:00
< / body >
< / html >