diff --git a/version.rkt b/version.rkt index 55aa0c8..9d352fe 100644 --- a/version.rkt +++ b/version.rkt @@ -7,4 +7,4 @@ (provide version) (: version String) -(define version "1.83") +(define version "1.88") diff --git a/web-world/js-impl.js b/web-world/js-impl.js index c3d7566..d4798a3 100644 --- a/web-world/js-impl.js +++ b/web-world/js-impl.js @@ -980,6 +980,9 @@ 'longitude' : Number(position.coords.longitude) })); } }; + var fail = function(err) { + // Quiet failure + }; // If we fail while trying to watch the position // using high accuracy, switch over to the coarse one. var onFailSwitchoverToCoerse = function() { @@ -988,9 +991,6 @@ success, fail); }; - var fail = function(err) { - // Quiet failure - }; if (!!(navigator.geolocation)) { navigator.geolocation.getCurrentPosition(success, fail); this.id = navigator.geolocation.watchPosition( @@ -1353,6 +1353,27 @@ + // We keep a cache of valid element names. The only keys here are + // those elements whose names are valid. We don't record invalid + // ones, since there's an unbound number of those. + var validElementNames = {}; + var isValidElementName = function(name) { + if (! (validElementNames.hasOwnProperty(name))) { + // Permissive parsing: see that the name is a valid + // element type. + // Is there a nicer way to do this besides exception + // handling? + try { + document.createElement(name); + validElementNames[name] = true; + } catch(e) { + return false; + } + } + return true; + }; + + // An xexp is one of the following: // xexp :== (name (@ (key value) ...) xexp ...) // :== (name xexp ...) @@ -1367,6 +1388,10 @@ } if (isList(x) && !(isEmpty(x))) { if (isSymbol(x.first)) { + if (! isValidElementName(x.first.val)) { + return false; + } + children = x.rest; // Check the rest of the children. The first is special. if (isEmpty(children)) {