Re: [whatwg] Proposal: Adding methods like getElementById and getElementsByTagName to DocumentFragments

2013-10-31 Thread Ms2ger
On 10/31/2013 04:13 PM, Boris Zbarsky wrote: In particular, I don't believe browser vendors typically run W3C test suites en masse regularly, Just going to note here that James Graham is, in fact, working on doing that for Mozilla. HTH Ms2ger

Re: [whatwg] Proposal: Adding methods like getElementById and getElementsByTagName to DocumentFragments

2013-10-19 Thread Ms2ger
document. I'm sure that when I tested that, a year or so back, it didn't work. Could you elucidate? Quoting part of the original email you trimmed: Luckily, we have SVGSVGElement.prototype.getElementById available to compare to Element.prototype.querySelector. That is, getElementById is available on |svg| elements in the SVG namespace. HTH Ms2ger

Re: [whatwg] Pull requests for HTML5 spec?

2013-05-14 Thread Ms2ger
opposition in the HTML WG. If the WHATWG spec is hosted on Subversion, I guess that means pull requests to that branch on Github will be ignored? Indeed. You can always send Hixie a patch by email, if you like making changes yourself. HTH Ms2ger

Re: [whatwg] Standardizing Console object

2012-12-18 Thread Ms2ger
done some work on this: http://sideshowbarker.github.com/console-spec/ HTH Ms2ger

Re: [whatwg] DOMTokenList enable

2012-08-01 Thread Ms2ger
nable = function(name, value) { value ? this.add(name) : this.remove(name); }; I filed <https://www.w3.org/Bugs/Public/show_bug.cgi?id=18463> to track this proposal. HTH Ms2ger

Re: [whatwg] Why isn't the "pattern" attribute applied to ?

2012-02-10 Thread Ms2ger
the pattern is that it currently does not implement input type=number (patches welcome). Instead, it implements the fallback behaviour defined in the specification, i.e., treat unknown 'type' values as 'text'—which causes the pattern attribute to apply. Using input type=number pattern=... will break as soon as Firefox correctly implements the feature. HTH Ms2ger

Re: [whatwg] Should script run if it comes from a HTML fragment?

2010-11-13 Thread Ms2ger
Ms2ger wrote: Ryosuke Niwa wrote: On Fri, Nov 12, 2010 at 2:29 PM, Jonas Sicking wrote: You looking at only part of what Henri said. He also pointed to http://www.w3.org/Bugs/Public/show_bug.cgi?id=11191 which is a request to change HTML5 so that createContextualFragment can specify that

Re: [whatwg] Should script run if it comes from a HTML fragment?

2010-11-13 Thread Ms2ger
remain executable. However, this request has not been granted yet. The specification [1] now states: > Mark all scripts in /new children/ as "already started". I hope this clarifies my intention. Ms2ger [1] http://html5.org/specs/dom-parsing.html#dom-range-createcontextualfragment