import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo

This commit is contained in:
Roy Tam 2018-01-19 03:59:58 +08:00
commit dcd9973243
150858 changed files with 23884658 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Id Value</title>
<link href="idvalue1htmlrules.xml" rel="its-rules"/>
</head>
<body>
<p id="settingsMissing">
<b id="text">Can't find settings file.</b>
<var id="desc">The module cannot find the default settings file.
You need to re-initialize the system.</var>
</p>
</body>
</html>

View file

@ -0,0 +1,6 @@
<its:rules xmlns:its="http://www.w3.org/2005/11/its" xmlns:h="http://www.w3.org/1999/xhtml" version="2.0">
<its:idValueRule selector="//h:p" idValue="@id"/>
<its:idValueRule selector="//h:b" idValue="@id"/>
<its:idValueRule selector="//h:var" idValue="@id"/>
</its:rules>

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Id Value</title>
<link href="idvalue2htmlrules.xml" rel="its-rules"/>
</head>
<body>
<p id="settingsMissing">
<b id="text">Can't find settings file.</b>
<var id="desc">The module cannot find the default settings file.
You need to re-initialize the system.</var>
<b id="crashtext">This computer is now crashing GOODBYE!!</b>
</p>
</body>
</html>

View file

@ -0,0 +1,7 @@
<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="idvalueparam">text</its:param>
<its:idValueRule selector="//h:p" idValue="@id"/>
<its:idValueRule selector="//h:b[@id=$idvalueparam]" idValue="@id"/>
<its:idValueRule selector="//h:b[@id='crashtext']" idValue="@id"/>
<its:idValueRule selector="//h:var" idValue="@id"/>
</its:rules>

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<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="idvalueparam">text</its:param>
<its:idValueRule selector="//h:p" idValue="@id"/>
<its:idValueRule selector="//h:b[@id=$idvalueparam]" idValue="@id"/>
<its:idValueRule selector="//h:var" idValue="@id"/>
</its:rules>
</script>
<meta charset=utf-8>
<title>Id Value</title>
</head>
<body>
<p id="settingsMissing">
<b id="text">Can't find settings file.</b>
<var id="desc">The module cannot find the default settings file.
You need to re-initialize the system.</var>
</p>
</body>
</html>