aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/toggle_fails_on_Safari.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-07-25 01:24:20 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-07-25 01:24:20 -0400
commit99b59f2d62a8e431d84a469ab31a8da101333b26 (patch)
tree45c615b10b350072ea1bdfea54c9f4eca3aa8b72 /doc/bugs/toggle_fails_on_Safari.mdwn
parentf8180391408d171b4ddba463e168baa21a5f6228 (diff)
downloadikiwiki-99b59f2d62a8e431d84a469ab31a8da101333b26.tar
ikiwiki-99b59f2d62a8e431d84a469ab31a8da101333b26.tar.gz
toggle: Fix incompatability between javascript and webkit.
Diffstat (limited to 'doc/bugs/toggle_fails_on_Safari.mdwn')
-rw-r--r--doc/bugs/toggle_fails_on_Safari.mdwn10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/bugs/toggle_fails_on_Safari.mdwn b/doc/bugs/toggle_fails_on_Safari.mdwn
index 12fca7084..a756ce815 100644
--- a/doc/bugs/toggle_fails_on_Safari.mdwn
+++ b/doc/bugs/toggle_fails_on_Safari.mdwn
@@ -14,3 +14,13 @@ Looking at the Safari Web Inspector, it believes there is a parse error on line
47 function getElementsByClass(class) {
SyntaxError: Parse error
48 var ret = new Array();
+
+> Reproduced in epiphany-webkit on debian.
+>
+> Also noticed something interesting when I opened the page in vim. It
+> highlighted the "class" like a type definition, not a variable. Sure
+> enough, replacing with "c" fixed it.
+>
+> I wonder if webkit is actually in the right here, and using a reseved
+> word like, presumably, "class" as a variable name is not legal. As I try
+> to ignore javascript as much as possible, I can't say. [[done]] --[[Joey]]