Touch Events version 1 W3C Proposed Recommendation 09 May 2013 This version: http://www.w3.org/TR/2013/PR-touch-events-20130509/ Latest published version: http://www.w3.org/TR/touch-events/ Latest editor's draft: http://dvcs.w3.org/hg/webeven... 続きを読む
Pointer Events W3C Candidate Recommendation 09 May 2013 This version: http://www.w3.org/TR/2013/CR-pointerevents-20130509/ Latest published version: http://www.w3.org/TR/pointerevents/ Latest editor's draft: https://dvcs.w3.org/hg/pointereven... 続きを読む
W3C Working Draft 14 May 2013 This version http://www.w3.org/TR/2013/WD-shadow-dom-20130514/ Latest version http://www.w3.org/TR/shadow-dom/ Latest editor's draft http://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/shadow/index.html Previou... 続きを読む
DOM Futures were only recently introduced, and it seems like suddenly every API is being forced into using them. Why? How did this crazy idea suddenly appear? Where was the discussion? Hopefully I can answer a few of these questions, and expl... 続きを読む
1.1 --- a/content/base/src/Comment.cpp 1.2 +++ b/content/base/src/Comment.cpp 1.3 @@ -55,16 +55,29 @@ Comment::List(FILE* out, int32_t aIndent 1.4 nsAutoString tmp; 1.5 ToCString(tmp, 0, mText.GetLength()); 1.6 fputs(NS_LossyConvertUTF16toASC... 続きを読む
1.1 --- a/content/html/document/src/nsHTMLDocument.cpp 1.2 +++ b/content/html/document/src/nsHTMLDocument.cpp 1.3 @@ -140,25 +140,16 @@ static bool ConvertToMidasInternalComman 1.4 bool& boolValue); 1.5 1.6 static bool ConvertToMidasInternalC... 続きを読む
Support an Event Path API behind experimentalShadowDOM flag. The spec issue is here: https://www.w3.org/Bugs/Public/show_bug.cgi?id=21066 See also the comment in the bug: https://code.google.com/p/chromium/issues/detail?id=234030#c5 BUG=23403... 続きを読む
Remove XMLHttpRequestException in favor of DOMException http://www.w3.org/TR/XMLHttpRequest/ XMLHttpRequestException is not implemented on other browsers and it is not in any spec (it was in a spec for a short period in 2007 which happens to ... 続きを読む
Remove RangeException interface The RangeException idl interface is not part of any standard. It was used for a few range related operations. The spec says that these should use DOMException instead. BUG=229397 Review URL: https://chromiumcod... 続きを読む
Make Range constructable http://dom.spec.whatwg.org/#interface-range Now we can do `new Range()` instead of `document.createRange()`. BUG=237901 Review URL: https://chromiumcodereview.appspot.com/14904005 git-svn-id: svn://svn.chromium.org/bl... 続きを読む
Make DocumentFragment constructable http://dom.spec.whatwg.org/#documentfragment This allows us to do `new DocumentFragment` instead of `document.createDocumentFragment()`. BUG=238232 Review URL: https://chromiumcodereview.appspot.com/1494000... 続きを読む
Make Comment constructable http://dom.spec.whatwg.org/#comment This allows us to do `new Comment('abc')` instead of `document.createComment('abc')`. BUG=238233 Review URL: https://chromiumcodereview.appspot.com/14931009 git-svn-id: svn://svn.... 続きを読む
Make Text constructable. http://dom.spec.whatwg.org/#interface-text This allows us to do `new Text('abc')` instead of `document.createText('abc')`. BUG=237947 Review URL: https://chromiumcodereview.appspot.com/14582018 git-svn-id: svn://svn.c... 続きを読む
Deny cross-origin access to 'window.history'. Currently, we allow cross-origin access to certain methods on 'window.history'. This is contrary to both the spec, and the existing behavior of both Gecko and IE[1]. This patch drops the custom se... 続きを読む
arv@chromium.org <arv@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> 続きを読む
Disabled select element should not fire onchange event. After http://trac.webkit.org/changeset/140286, select elements can scroll whether they are disabled or not. While they scroll, they also change the selected item. This patch allows the s... 続きを読む
<label> element should send key and focus events if it has contenteditable attribute. HTMLLabelElement should be focusable if it passes the test isContentEditable(). As a result, the proper events would be sent. Both Opera and Firefox support... 続きを読む
1.1 --- a/content/events/src/nsDOMEvent.cpp 1.2 +++ b/content/events/src/nsDOMEvent.cpp 1.3 @@ -824,17 +824,18 @@ nsDOMEvent::DuplicatePrivateData() 1.4 break; 1.5 } 1.6 case NS_TRANSITION_EVENT: 1.7 { 1.8 nsTransitionEvent* oldTransitionEven... 続きを読む
1.1 --- a/content/events/src/nsDOMAnimationEvent.cpp 1.2 +++ b/content/events/src/nsDOMAnimationEvent.cpp 1.3 @@ -10,17 +10,18 @@ 1.4 #include "nsIXPCScriptable.h" 1.5 1.6 nsDOMAnimationEvent::nsDOMAnimationEvent(mozilla::dom::EventTarget* aO... 続きを読む
simonjam@chromium.org <simonjam@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> 続きを読む
There are many DOM APIs that return a live NodeList or HTMLCollection such as childNodes and getElementsByTagName. However, the fact they reflect the live view of the DOM tree introduces a significant code complexity and runtime cost. Conside... 続きを読む
[webkit-dev] What do we do with various Web component features? Andreas Kling akling at apple.com Mon Apr 29 10:34:21 PDT 2013 Previous message: [webkit-dev] What do we do with various Web component features? Next message: [webkit-dev] Heads ... 続きを読む
Show lines around each change Show the changes in full context Timestamp: 04/29/13 08:33:31 (24 hours ago) Author: akling@apple.com Message: When updating geometry, send JavaScript resize before before layout/paint. <http://webkit.org/b/115... 続きを読む
Timestamp: 04/22/13 11:23:33 (8 days ago) Author: aestes@apple.com Message: Range.getClientRects() should not include rects for partially selected elements https://bugs.webkit.org/show_bug.cgi?id=76839 Reviewed by Sam Weinig. Source/WebCore... 続きを読む
Timestamp: 04/23/13 15:36:20 (7 days ago) Author: akling@apple.com Message: Revert "Throttle resize events during live window resize." <http://webkit.org/b/114292> <rdar://problem/13411454> <rdar://problem/13694839> Reviewed by Geoffrey Gar... 続きを読む
2013-04-04 Mozillaにnavigator.productが入ったのは2000年3月21日 Mozillaのソースコードにnavigator.productが追加されたのは2000年3月21日です。13年前ですね。 nsGlobalWindow.cpp: 1.246 vs. 1.247 r=jst. 30067. we now expose OSCPU, vendor and product... 続きを読む
1.1 --- a/dom/interfaces/base/nsIDOMWindow.idl 1.2 +++ b/dom/interfaces/base/nsIDOMWindow.idl 1.3 @@ -180,18 +180,18 @@ interface nsIDOMWindow : nsISupports 1.4 1.5 /** 1.6 * Get the application cache object for this window. 1.7 */ 1.8 readon... 続きを読む
[webkit-dev] What do we do with various Web component features? Benjamin Poulain benjamin at webkit.org Sat Apr 27 14:38:00 PDT 2013 Previous message: [webkit-dev] What do we do with various Web component features? Next message: [webkit-dev] ... 続きを読む
Timestamp: 04/26/13 02:42:11 (6 hours ago) Author: allan.jensen@digia.com Message: Mouseenter and mouseleave events not supported https://bugs.webkit.org/show_bug.cgi?id=18930 Reviewed by David Hyatt. Source/WebCore: Implements mouseenter a... 続きを読む
Masayuki Nakano — Bug 842927 part.9 Implement D3E KeyboardEvent.key on Gonk r=smaug+mwu 続きを読む
Add MeasureAs for window.event. This adds a histogram to measure how often window.event is being used. The intent of this is to determine whether we can remove this old IE specific property. This also makes window.event non enumerable so that... 続きを読む
Dealing with iframes is always a double-edged sword. On the one hand, you get sandboxing of content within another page, ensuring that JavaScript and CSS from one page won’t affect another. If the iframe is displayed a page from a different ... 続きを読む
This is the Meeting Page including Agenda for the Web Applications WG (WebApps) f2f meeting in the San Jose CA US on Thursday April 25 and Friday April 26 2013. This meeting follows the HTML WG's April 23 and April 24 f2f meeting at the same ... 続きを読む
Timestamp: 04/17/13 09:14:37 (22 hours ago) Author: commit-queue@webkit.org Message: getAttribute does not behave correctly for mixed-case attributes on HTML elements https://bugs.webkit.org/show_bug.cgi?id=105713 Patch by Arpita Bahuguna <... 続きを読む
1.1 --- a/content/html/content/src/HTMLInputElement.cpp 1.2 +++ b/content/html/content/src/HTMLInputElement.cpp 1.3 @@ -2,16 +2,17 @@ 1.4 /* This Source Code Form is subject to the terms of the Mozilla Public 1.5 * License, v. 2.0. If a copy ... 続きを読む
Allan Sandfeld Jensen kde at carewolf.com Tue Apr 16 05:08:12 PDT 2013 Previous message: [webkit-dev] Adding "__FILE__" and "__LINE__" to CRASH() macro Next message: [webkit-dev] mouseenter and mouseleave events Messages sorted by: [ date ] [... 続きを読む
Timestamp: 04/09/13 10:45:13 (7 days ago) Author: akling@apple.com Message: Throttle resize events during live window resize. <http://webkit.org/b/114292> <rdar://problem/13411454> Reviewed by Geoffrey Garen. Limit resize events to one at m... 続きを読む
This is an attempt to rewrite the CSS Font Load Events spec to instead use Futures, as I believe it makes for much simpler and easier-to-use interface.APIpartial interface document { readonly attribute FontList fonts; } enum LoadStatus { "loa... 続きを読む
(This is a technical proposal, without overly much explanation. A more explanatory post will probably come later.)The recently-added DOM Futures help encapsulate one common async pattern, but there are more out there that can benefit from bei... 続きを読む
1.1 --- a/content/base/public/Element.h 1.2 +++ b/content/base/public/Element.h 1.3 @@ -1484,16 +1484,21 @@ NS_IMETHOD GetNextElementSibling(nsIDOME 1.4 } \ 1.5 return CallQueryInterface(element, aNextElementSibling); \ 1.6 } \ 1.7 NS_IMETHOD... 続きを読む
From: Anne van Kesteren <annevk@annevk.nl> Date: Mon, 8 Apr 2013 14:37:13 +0100 Message-ID: <CADnb78gWzZCL1464OPoz-aA2RmMRAYb4ooCei-R-ngGYZeeGUw@mail.gmail.com> To: "public-script-coord@w3.org" <public-script-coord@w3.org> So modules have not... 続きを読む
Web Components is a set of specs which let web developers leverage their HTML, CSS and JavaScript knowledge to build widgets that can be reused easily and reliably. This page is about the implementation of Web Components in Blink. If this was... 続きを読む
One common aspect of making a website or application “mobile friendly” is the inclusion of tweaks, additional functionality or interface elements that are particularly aimed at touchscreens. A very common question from developers is now “H... 続きを読む
Timestamp: 04/05/13 05:38:41 (24 hours ago) Author: commit-queue@webkit.org Message: Source/WebCore: Updating mouse cursor on style changes without emitting fake mousemove event https://bugs.webkit.org/show_bug.cgi?id=101857 Patch by Aivo P... 続きを読む