1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<!doctype html> <html> <head> <title>testcase for autocomplete testing</title> <link rel="stylesheet" type="text/css" href="resources_inpage1.css"/> <style type="text/css"> div { font-size: 4em; } div > span { text-decoration: underline; } div + button { border: 2px dotted red; } </style> </head> <body> <div>parent <span>child</span></div><button>sibling</button> </body> </html>