diff options
author | june0cho <june0.cho@samsung.com> | 2013-11-15 17:17:15 +0900 |
---|---|---|
committer | Junyoung Cho <jun0cho@bigeye-mintlinux.(none)> | 2013-11-30 23:21:25 +0900 |
commit | c7ad220178201d2cb66fca7697ee4c468c340fdb (patch) | |
tree | 4360b5aa06183c9e8f529e65fc326f37e3029258 | |
parent | 93a62f4f472eed9591948ceb523a8f5854769afe (diff) | |
download | servo-c7ad220178201d2cb66fca7697ee4c468c340fdb.tar.gz servo-c7ad220178201d2cb66fca7697ee4c468c340fdb.zip |
Add a test file for local bookmark.(#text1, #text2, #text3, #top, #h3, #num)
-rwxr-xr-x | src/test/html/test_local_bookmark.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/test/html/test_local_bookmark.html b/src/test/html/test_local_bookmark.html new file mode 100755 index 00000000000..503cc46bbdd --- /dev/null +++ b/src/test/html/test_local_bookmark.html @@ -0,0 +1,39 @@ +<html> + <head> + <style type="text/css"> + body { font-size:40px; } + </style> + </head> + + <body> + <div> + <div id="text1"> 1st text </div> + <div id="text2"> 2nd text </div> + <div id="text3"> 3rd text </div> + </div> + <div> + <span>This</span> <span> is</span> <span>span</span> + <span>This </span> <span>is</span> <span>span</span> + </div> + <a name="top"> [name is "top"] </a> + <h3 id="h3"> + [id is "h3"] <hr/> + <span> text </span> + <span style="font-family:Times New Roman"> Times New Roman </span> + <span style="font-family:Verdana"> Verdana </span> + <span style="font-family:Arail"> Arial </span> + <span style="font-family:Courier New"> Courier New </span> + <span style="font-family:Georgia"> Georgia</span> + <span style="font-family:Lucida Console"> Lucida Console </span> + <div id ="num"> [id is "num"] </div> + <span> 1 </span> + <span> 2 </span> + <div> 3 </div> + <span> 4 </span> + <span> 5 </span> + </h3> + <h4> + --- Bottom --- + </h4> + </body> +</html> |