mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 01:08:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
|
|
@ -0,0 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset=utf-8>
|
||||
<title>Example</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>Login names can only use letters from A to Z (upper or lowercase)
|
||||
and the character underscore (_) and minus (-).
|
||||
For example: <code its-allowed-characters="[a-zA-Z_\-]">Huck_Finn</code>.</p>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset=utf-8>
|
||||
<title>Example</title>
|
||||
<link href="allowedcharacters2htmlrules.xml" rel="its-rules"/>
|
||||
</head>
|
||||
<body>
|
||||
<p>Login names can only use letters from A to Z (upper or lowercase)
|
||||
and the character underscore (_) and minus (-).
|
||||
For example: <code>Huck_Finn</code>.</p>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
<its:rules xmlns:its="http://www.w3.org/2005/11/its" xmlns:h="http://www.w3.org/1999/xhtml" version="2.0">
|
||||
<its:allowedCharactersRule allowedCharacters="[a-zA-Z_\-]" selector="//h:p/h:code"/>
|
||||
</its:rules>
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>Example</title>
|
||||
<link href="allowedcharacters3htmlrules.xml" rel="its-rules"/>
|
||||
</head>
|
||||
<body>
|
||||
<p>Login names can only use letters from A to Z (upper or lowercase)
|
||||
and the character underscore (_) and minus (-).
|
||||
For example: <code id="name">Huck_Finn</code>.</p>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
<its:rules xmlns:its="http://www.w3.org/2005/11/its" xmlns:h="http://www.w3.org/1999/xhtml" version="2.0">
|
||||
<its:param name="allowedcharsParam">name</its:param>
|
||||
<its:allowedCharactersRule allowedCharacters="[a-zA-Z_\-]" selector="//h:p/h:code[@id=$allowedcharsParam]"/>
|
||||
</its:rules>
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>Example</title>
|
||||
<script type="application/its+xml">
|
||||
<its:rules xmlns:its="http://www.w3.org/2005/11/its" xmlns:h="http://www.w3.org/1999/xhtml" version="2.0">
|
||||
<its:param name="acParam">name</its:param>
|
||||
<its:allowedCharactersRule allowedCharacters="[a-zA-Z_\-]" selector="//h:code[@id=$acParam]"/>
|
||||
</its:rules>
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<p>Login names can only use letters from A to Z (upper or lowercase)
|
||||
and the character underscore (_) and minus (-).
|
||||
For example: <code id="name">Huck_Finn</code>.</p>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue