Update web-platform-tests to revision 0d318188757a9c996e20b82db201fd04de5aa255

This commit is contained in:
James Graham 2015-03-27 09:15:38 +00:00
parent b2a5225831
commit 1a81b18b9f
12321 changed files with 544385 additions and 6 deletions

View file

@ -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>

View file

@ -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>

View file

@ -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>

View file

@ -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>

View file

@ -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>

View file

@ -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>

View file

@ -0,0 +1,12 @@
<myRes xmlns:its="http://www.w3.org/2005/11/its">
<head>
<its:rules version="2.0">
<its:allowedCharactersRule allowedCharacters="[^*+]" selector="//content"/>
</its:rules>
</head>
<body>
<content>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed
diam voluptua.</content>
</body>
</myRes>

View file

@ -0,0 +1,9 @@
<res xmlns:its="http://www.w3.org/2005/11/its">
<head>
<its:rules version="2.0">
<its:allowedCharactersRule selector="//record" allowedCharactersPointer="@set"/>
</its:rules>
</head>
<record id="a1" set="[ &#xFF01;&#xFF5E;]"> </record>
</res>

View file

@ -0,0 +1,10 @@
<myRes xmlns:its="http://www.w3.org/2005/11/its">
<head>
<its:rules xmlns:its="http://www.w3.org/2005/11/its" xmlns:xlink="http://www.w3.org/1999/xlink" version="2.0" xlink:type="simple" xlink:href="allowedcharacters3xmlrules.xml"/>
</head>
<body>
<content>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed
diam voluptua.</content>
</body>
</myRes>

View file

@ -0,0 +1,3 @@
<its:rules xmlns:its="http://www.w3.org/2005/11/its" version="2.0">
<its:allowedCharactersRule allowedCharacters="[^*+]" selector="//content"/>
</its:rules>

View file

@ -0,0 +1,7 @@
<res xmlns:its="http://www.w3.org/2005/11/its">
<head>
<its:rules xmlns:its="http://www.w3.org/2005/11/its" xmlns:xlink="http://www.w3.org/1999/xlink" version="2.0" xlink:type="simple" xlink:href="allowedcharacters4xmlrules.xml"/>
</head>
<record id="a1" set="[ &#xFF01;&#xFF5E;]"> </record>
</res>

View file

@ -0,0 +1,3 @@
<its:rules xmlns:its="http://www.w3.org/2005/11/its" version="2.0">
<its:allowedCharactersRule selector="//record" allowedCharactersPointer="@set"/>
</its:rules>

View file

@ -0,0 +1,4 @@
<messages xmlns:its="http://www.w3.org/2005/11/its" its:version="2.0">
<msg num="123">Click the <panelmsg its:allowedCharacters="[&#x0020;-&#x00FE;]"
>CONTINUE</panelmsg> Button on the printer panel</msg>
</messages>

View file

@ -0,0 +1,3 @@
<messages xmlns:its="http://www.w3.org/2005/11/its" its:version="2.0">
<msg num="123">Click the <its:span allowedCharacters="[&#x0020;-&#x00FE;]">CONTINUE</its:span> Button on the printer panel</msg>
</messages>

View file

@ -0,0 +1,10 @@
<myRes xmlns:its="http://www.w3.org/2005/11/its">
<head>
<its:rules xmlns:its="http://www.w3.org/2005/11/its" xmlns:xlink="http://www.w3.org/1999/xlink" version="2.0" xlink:type="simple" xlink:href="allowedcharacters7xmlrules.xml"/>
</head>
<body>
<content id="allowedchar">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed
diam voluptua.</content>
</body>
</myRes>

View file

@ -0,0 +1,4 @@
<its:rules xmlns:its="http://www.w3.org/2005/11/its" version="2.0">
<its:param name="allowedcharParam">allowedchar</its:param>
<its:allowedCharactersRule allowedCharacters="[^*+]" selector="//content[@id=$allowedcharParam]"/>
</its:rules>

View file

@ -0,0 +1,13 @@
<myRes xmlns:its="http://www.w3.org/2005/11/its">
<head>
<its:rules xmlns:its="http://www.w3.org/2005/11/its" version="2.0">
<its:param name="allowedcharParam">allowedchar</its:param>
<its:allowedCharactersRule allowedCharacters="[^*+]" selector="//content[@id=$allowedcharParam]"/>
</its:rules>
</head>
<body>
<content id="allowedchar">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed
diam voluptua.</content>
</body>
</myRes>