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

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>Clear Elements Test</title>
<meta charset=utf-8>
</head>
<body>
<div id="contentEditableElement" contentEditable="true">
This is a contentEditable area
</div>
</body>
</html>

View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>Clear Elements Test</title>
<meta charset=utf-8>
</head>
<body>
<input id="disabledTextInput" type="text" disabled="true" value="Test"/>
</body>
</html>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>Clear Elements Test</title>
<meta charset=utf-8>
</head>
<body>
<textarea rows="5" id="disabledTextArea" disabled="true" cols="20">
text area which is not supposed to be cleared
</textarea>
</body>
</html>

View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>Clear Elements Test</title>
<meta charset=utf-8>
</head>
<body>
<input id="readOnlyTextInput" type="text" readonly value="Test"/>
</body>
</html>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>Clear Elements Test</title>
<meta charset=utf-8>
</head>
<body>
<textarea id="readOnlyTextArea" readonly rows="5" cols="20">
text area which is not supposed to be cleared
</textarea>
</body>
</html>

View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>Clear Elements Test</title>
<meta charset=utf-8>
</head>
<body>
<input id="writableTextInput" type="text" value="Test"/>
</body>
</html>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>Clear Elements Test</title>
<meta charset=utf-8>
</head>
<body>
<textarea id="writableTextArea" rows="2" cols="20">
This is a sample text area which is supposed to be cleared
</textarea>
</body>
</html>

View file

@ -0,0 +1,8 @@
<html>
<head>
<meta charset="utf-8" />
<title>Text Form Landing</title>
</head>
<body>
</body>
</html>

View file

@ -0,0 +1,25 @@
<html>
<head>
<title>Text Form</title>
<meta charset="utf-8" />
<script>
function key_press() {
document.getElementById("text").textContent = document.getElementById("Text1").value;
}
function got_focus() {
var output = document.getElementById("output");
output.checked = true;
}
</script>
</head>
<body>
<p id="text"></p>
<form action="text-form-landing.html">
<input id="Text1" type="text" onkeyup="key_press()"/>
<input id="Text2" type="text" onfocus="got_focus()" />
<input id="output" type="checkbox" />
<input type="submit" name="e" value="mc2" />
</form>
</body>
</html>