Selectors APIがLast Callへ 13:38 ただし二回目ですが。 [selectors-api] All Issues Resolved EDも更新されてます。 Selectors API (Editor's Draft) 一年前のWDからの変更点は StaticNodeListがなくなった DocumentFragmentにも適用できるようになった NSRes... 続きを読む
From: Lachlan Hunt <lachlan.hunt@lachy.id.au> Date: Wed, 29 Oct 2008 16:51:59 +0100 Message-ID: <4908869F.4050306@lachy.id.au> To: public-webapps <public-webapps@w3.org> Hi, As of now, all of the outstanding issues relating to Selectors API h... 続きを読む
If node is an Element node, copy its attributes. If the clone children flag is set, clone all the children of node and append them to copy, with the same new ownerDocument and the clone children flag being set. Return copy. 1.6 Legal hierarch... 続きを読む
JavaScript結構前に作っていたんだけど、IE6, IE7 でも動作する DOM Storage を作ったので、きちんと告知します。 追記ちなみにサーバーにファイル置くだけで動きます。ユーザーに何かインストールさせる必要はありません。(2008-09-24T11:45:56+09:00)CodeRepo... 続きを読む
constructorが実装されている件 alert('constructor' in window); // true alert(window.constructor); // [object Window] div = document.createElement('div'); alert('constructor' in div); // true alert(div.constructor); // [object HTMLDivElement] a... 続きを読む
From: Anne van Kesteren <annevk@opera.com> Date: Mon, 08 Sep 2008 11:00:31 +0200 To: webreq@w3.org Cc: www-archive@w3.org, "Arthur Barstow" <art.barstow@nokia.com>, "Charles McCathieNevile" <chaals@opera.com>, "Michael(tm) Smith" <mike@w3.org... 続きを読む
javascript追記:いまいちだったので書き直し。 var liveQuery = function(){ document.addEventListener("DOMSubtreeModified",update,false); var queries = {}; function liveQuery(selector){ if(!(this instanceof liveQuery)) return new liveQuery(selec... 続きを読む
javascriptDOM Level 2 Traversal の挙動を確認するページを作成しました。Traversal Test http://miya2000.up.seesaa.net/test/traversal_test.htm 気づいた点Firefox3 には NodeIterator が実装されていない。まあ TreeWalker が NodeIterator の機能を内包し... 続きを読む
W3C home > Mailing lists > Public > public-webapps@w3.org > July to September 2008 ElementTraversal support in Firefox 3.1 This message: [ Message body ] [ Respond ] [ More options ] Related messages: [ Next message ] [ Previous message ] [ N... 続きを読む
css先頭に Combinator を置けないこと // 以下のようなことができない elm.querySelectorAll('> div'); elm.querySelectorAll('+ div'); elm.querySelectorAll('~ div'); Selector が仕様化されたときは、たぶん、サブツリーを起点に使われることなんて想像して... 続きを読む