Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <html> |
michael@0 | 3 | <!-- |
michael@0 | 4 | https://bugzilla.mozilla.org/show_bug.cgi?id=543428 |
michael@0 | 5 | --> |
michael@0 | 6 | <head> |
michael@0 | 7 | <title>Test for Bug 543428</title> |
michael@0 | 8 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
michael@0 | 9 | <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 10 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> |
michael@0 | 11 | <style type="text/css" id="sheet">p { color: blue; }</style> |
michael@0 | 12 | </head> |
michael@0 | 13 | <body> |
michael@0 | 14 | <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=543428">Mozilla Bug 543428</a> |
michael@0 | 15 | <p id="display"></p> |
michael@0 | 16 | <div id="content" style="display: none"> |
michael@0 | 17 | |
michael@0 | 18 | </div> |
michael@0 | 19 | <pre id="test"> |
michael@0 | 20 | <script type="application/javascript"> |
michael@0 | 21 | |
michael@0 | 22 | /** Test for Bug 543428 **/ |
michael@0 | 23 | |
michael@0 | 24 | var sheet = document.getElementById("sheet").sheet; |
michael@0 | 25 | var rule = sheet.cssRules[0]; |
michael@0 | 26 | |
michael@0 | 27 | function set_selector_text(selector) |
michael@0 | 28 | // no cssText or selectorText setter implemented yet |
michael@0 | 29 | { |
michael@0 | 30 | try { |
michael@0 | 31 | // insertRule might throw on syntax error |
michael@0 | 32 | sheet.insertRule(selector + " { color : green }", 0); |
michael@0 | 33 | sheet.deleteRule(1); |
michael@0 | 34 | } catch(ex) {} |
michael@0 | 35 | rule = sheet.cssRules[0]; |
michael@0 | 36 | } |
michael@0 | 37 | |
michael@0 | 38 | is(rule.selectorText, "p", "simple identifier not escaped"); |
michael@0 | 39 | set_selector_text('\\P'); |
michael@0 | 40 | is(rule.selectorText, "P", "simple identifier not escaped"); |
michael@0 | 41 | set_selector_text('\\70'); |
michael@0 | 42 | is(rule.selectorText, "p", "simple identifier not escaped"); |
michael@0 | 43 | set_selector_text('font-family_72756'); |
michael@0 | 44 | is(rule.selectorText, "font-family_72756", "simple identifier not escaped"); |
michael@0 | 45 | set_selector_text('-font-family_72756'); |
michael@0 | 46 | is(rule.selectorText, "-font-family_72756", "simple identifier not escaped"); |
michael@0 | 47 | set_selector_text('-0invalid'); |
michael@0 | 48 | set_selector_text('0invalid'); |
michael@0 | 49 | is(rule.selectorText, "-font-family_72756", "setting invalid value ignored"); |
michael@0 | 50 | set_selector_text('Håkon\\ Lie'); |
michael@0 | 51 | is(rule.selectorText, "Håkon\\ Lie", "escaping done only where needed"); |
michael@0 | 52 | |
michael@0 | 53 | </script> |
michael@0 | 54 | </pre> |
michael@0 | 55 | </body> |
michael@0 | 56 | </html> |