summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorAlex Xu <alex_y_xu@yahoo.ca>2013-07-11 18:45:22 -0400
committerAlex Xu <alex_y_xu@yahoo.ca>2013-07-11 18:45:22 -0400
commitabff23e68509733a1ca0b466a4dc6ee0d33d6e2f (patch)
tree3861ba0e8386b5d0a976e30be140111b52b0cd1f /www
parent9ef324d2d2e40f919de9b7d7e1852affa97e0e91 (diff)
downloadhtml5ks-abff23e68509733a1ca0b466a4dc6ee0d33d6e2f.tar.xz
html5ks-abff23e68509733a1ca0b466a4dc6ee0d33d6e2f.zip
remove svg filter warning
Diffstat (limited to 'www')
-rw-r--r--www/css/index.css1
-rw-r--r--www/index.html3
-rw-r--r--www/js/html5ks.js5
3 files changed, 0 insertions, 9 deletions
diff --git a/www/css/index.css b/www/css/index.css
index 03f765d..2fedd0e 100644
--- a/www/css/index.css
+++ b/www/css/index.css
@@ -100,7 +100,6 @@ html.audio #warn li#audio { display: none; }
html.fontface #warn li#fontface { display: none; }
html.csstransforms #warn li#csstransforms { display: none; }
html.csstransitions #warn li#csstransitions { display: none; }
-html #warn li#html-svg-filter { display: none; }
label {
display: block;
}
diff --git a/www/index.html b/www/index.html
index 17ceead..5b99526 100644
--- a/www/index.html
+++ b/www/index.html
@@ -37,9 +37,6 @@
<li id="fontface">It doesn't seem to support <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face">the @font-face at-rule</a>, which lets us display the Playtime and Gentium fonts used in Katawa Shoujo. <a href="http://caniuse.com/#feat=fontface">Any browser released in the last 2 years or so should support it.</a></li>
<li id="csstransforms">It doesn't seem to support <a href="https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Using_CSS_transforms">CSS transforms</a>, which means that we won't be able to scale the window or show most transitions. <a href="http://caniuse.com/#feat=transforms2d">Any browser released in the last 2 years ago should work.</a></li>
<li id="csstransitions">It doesn't seem to support <a href="https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Using_CSS_transitions">CSS transitions</a>, which means that almost all animations won't work. Videos should still work though, unless stated above. <a href="http://caniuse.com/#feat=css-transitions">You should definitely try upgrading.</a></li>
- <!-- svg filters aren't actually implemented yet
- <li id="html-svg-filter">It might not support SVG filters on HTML content, which means that filters like the sunset in the tea room will display as regular images. <a href="http://caniuse.com/#feat=svg-html">Unfortunately, this is only implemented in Firefox now.</a></li>
- -->
</ul>
<div id="gotit" class="button button-enabled">I know it's broken, let me play!</div>
</div>
diff --git a/www/js/html5ks.js b/www/js/html5ks.js
index e7f5991..354bae8 100644
--- a/www/js/html5ks.js
+++ b/www/js/html5ks.js
@@ -125,11 +125,6 @@ window.html5ks = {
if (/MSIE/.test(navigator.userAgent)) {
document.getElementById("ie").style.display = "block";
}
- /* svg not actually implemented yet
- if (!(/Firefox/.test(navigator.userAgent))) {
- document.getElementById("html-svg-filter").style.display = "block";
- }
- */
for (var i = 0; i < warns.length; i++) {
if (window.getComputedStyle(warns[i]).getPropertyValue("display") !== "none") {
warn.style.visibility = "visible";