layout/style/test/test_ident_escaping.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

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>

mercurial