/hg/icedtea-web: Use jnlp_href parameter instead of attribute in...
jkang at icedtea.classpath.org
jkang at icedtea.classpath.org
Thu Mar 5 19:32:55 UTC 2015
changeset aaea16216604 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=aaea16216604
author: Jie Kang <jkang at redhat.com>
date: Thu Mar 05 14:19:57 2015 -0500
Use jnlp_href parameter instead of attribute in applet tag for reproducers
2015-03-05 Jie Kang <jkang at redhat.com>
Use jnlp_href parameter instead of attribute in applet tag for reproducers.
This is to maintain compatibility with midori and epiphany browsers that
don't support jnlp_href as an applet tag's attribute
* tests/reproducer/simple/JSToJGet/resources/JSToJGet.html:
* tests/reproducer/simple/JSToJSet/resources/JSToJSet.html:
* tests/reproducer/simple/JavascriptFuncParam/resources/JavascriptFuncParam.html:
* tests/reproducer/simple/JavascriptGet/resources/JavascriptGet.html:
* tests/reproducer/simple/JavascriptSet/resources/JavascriptSet.html:
All tests now use parameter tag for jnlp_href
diffstat:
ChangeLog | 12 ++++++++++
tests/reproducers/simple/JSToJGet/resources/JSToJGet.html | 4 +-
tests/reproducers/simple/JSToJSet/resources/JSToJSet.html | 2 +-
tests/reproducers/simple/JavascriptFuncParam/resources/JavascriptFuncParam.html | 4 +-
tests/reproducers/simple/JavascriptGet/resources/JavascriptGet.html | 4 +-
tests/reproducers/simple/JavascriptSet/resources/JavascriptSet.html | 5 ++-
6 files changed, 22 insertions(+), 9 deletions(-)
diffs (90 lines):
diff -r 8cae163ee8bd -r aaea16216604 ChangeLog
--- a/ChangeLog Wed Mar 04 17:24:29 2015 +0100
+++ b/ChangeLog Thu Mar 05 14:19:57 2015 -0500
@@ -1,3 +1,15 @@
+2015-03-05 Jie Kang <jkang at redhat.com>
+
+ Use jnlp_href parameter instead of attribute in applet tag for reproducers.
+ This is to maintain compatibility with midori and epiphany browsers that
+ don't support jnlp_href as an applet tag's attribute
+ * tests/reproducer/simple/JSToJGet/resources/JSToJGet.html:
+ * tests/reproducer/simple/JSToJSet/resources/JSToJSet.html:
+ * tests/reproducer/simple/JavascriptFuncParam/resources/JavascriptFuncParam.html:
+ * tests/reproducer/simple/JavascriptGet/resources/JavascriptGet.html:
+ * tests/reproducer/simple/JavascriptSet/resources/JavascriptSet.html:
+ All tests now use parameter tag for jnlp_href
+
2015-03-04 Jiri Vanek <jvanek at redhat.com>
Fixed broken CacheUtil.
diff -r 8cae163ee8bd -r aaea16216604 tests/reproducers/simple/JSToJGet/resources/JSToJGet.html
--- a/tests/reproducers/simple/JSToJGet/resources/JSToJGet.html Wed Mar 04 17:24:29 2015 +0100
+++ b/tests/reproducers/simple/JSToJGet/resources/JSToJGet.html Thu Mar 05 14:19:57 2015 -0500
@@ -12,8 +12,8 @@
<h2>The JSToJGet html page</h2>
<applet code="JSToJGet" width="1000" height="100"
- id="applet" MAYSCRIPT
- jnlp_href="jstoj-get.jnlp">
+ id="applet" MAYSCRIPT>
+ <param name="jnlp_href" value="jstoj-get.jnlp">
</applet>
<div id="messageDiv"></div>
diff -r 8cae163ee8bd -r aaea16216604 tests/reproducers/simple/JSToJSet/resources/JSToJSet.html
--- a/tests/reproducers/simple/JSToJSet/resources/JSToJSet.html Wed Mar 04 17:24:29 2015 +0100
+++ b/tests/reproducers/simple/JSToJSet/resources/JSToJSet.html Thu Mar 05 14:19:57 2015 -0500
@@ -9,9 +9,9 @@
<h2>The JSToJSet html page</h2>
<applet id="applet" code="JSToJSet"
- jnlp_href="jstoj-set.jnlp"
width="1000" height="100" MAYSCRIPT
scriptable="true">
+ <param name="jnlp_href" value="jstoj-set.jnlp">
</applet>
<div id="messageDiv"></div>
diff -r 8cae163ee8bd -r aaea16216604 tests/reproducers/simple/JavascriptFuncParam/resources/JavascriptFuncParam.html
--- a/tests/reproducers/simple/JavascriptFuncParam/resources/JavascriptFuncParam.html Wed Mar 04 17:24:29 2015 +0100
+++ b/tests/reproducers/simple/JavascriptFuncParam/resources/JavascriptFuncParam.html Thu Mar 05 14:19:57 2015 -0500
@@ -10,8 +10,8 @@
<h2>The JToJSFuncParam html page</h2>
<applet code="JavascriptFuncParam" width="1000" height="100"
- id="applet" MAYSCRIPT
- jnlp_href="javascript-funcparam.jnlp">
+ id="applet" MAYSCRIPT>
+ <param name="jnlp_href" value="javascript-funcparam.jnlp"/>
</applet>
<script type="text/javascript" src="JavascriptFuncParam.js"></script>
</body>
diff -r 8cae163ee8bd -r aaea16216604 tests/reproducers/simple/JavascriptGet/resources/JavascriptGet.html
--- a/tests/reproducers/simple/JavascriptGet/resources/JavascriptGet.html Wed Mar 04 17:24:29 2015 +0100
+++ b/tests/reproducers/simple/JavascriptGet/resources/JavascriptGet.html Thu Mar 05 14:19:57 2015 -0500
@@ -12,8 +12,8 @@
<h2>The JToJSGet html page</h2>
<applet code="JavascriptGet" width="1000" height="100"
- id="applet" MAYSCRIPT
- jnlp_href="javascript-get.jnlp">
+ id="applet" MAYSCRIPT>
+ <param name="jnlp_href" value="javascript-get.jnlp"/>
</applet>
<script type="text/javascript" src="Javascript_Get.js"></script>
diff -r 8cae163ee8bd -r aaea16216604 tests/reproducers/simple/JavascriptSet/resources/JavascriptSet.html
--- a/tests/reproducers/simple/JavascriptSet/resources/JavascriptSet.html Wed Mar 04 17:24:29 2015 +0100
+++ b/tests/reproducers/simple/JavascriptSet/resources/JavascriptSet.html Thu Mar 05 14:19:57 2015 -0500
@@ -9,8 +9,9 @@
<h2>The JToJSSet html page</h2>
- <applet code="JavascriptSet" width="1000" height="100" id="applet"
- MAYSCRIPT jnlp_href="javascript-set.jnlp"> </applet>
+ <applet code="JavascriptSet" width="1000" height="100" id="applet" MAYSCRIPT>
+ <param name="jnlp_href" value="javascript-set.jnlp"/>
+ </applet>
<script type="text/javascript" src="Javascript_Set.js"></script>
</body>
</html>
More information about the distro-pkg-dev
mailing list