- 13 Nov, 2014 40 commits
-
-
senorblanco@chromium.org authored
This reverts commit dd138e54138a00f80fa1547bb3b4922aa02ad335, aka r185305. Speculative revert to fix Android AOSP build breakage: http://build.chromium.org/p/tryserver.chromium.linux/builders/android_aosp/builds/33131/steps/compile/logs/stdio. TBR=yangguo,jochen@chromium.org,vogelheim BUG= Review URL: https://codereview.chromium.org/721373002 git-svn-id: svn://svn.chromium.org/blink/trunk@185314 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
peter@chromium.org authored
This patch introduces the notificationclick and notificationerror events on the ServiceWorkerGlobalScope, and provides the necessary plumbing to be able to invoke them from the embedder. BUG=432527 Review URL: https://codereview.chromium.org/720873002 git-svn-id: svn://svn.chromium.org/blink/trunk@185313 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
jsbell@chromium.org authored
Trailing optional Dictionary are automagically handled by bindings, with a new empty dictionary passed in if the argument is not specified by script. Overloads are not needed in this case. BUG=373120 Review URL: https://codereview.chromium.org/717283002 git-svn-id: svn://svn.chromium.org/blink/trunk@185312 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
zhenyu.shan@intel.com authored
Count decoded frames in ImageFrameGenerator, and remove remove multi-frame image decoders when the image is completely decoded This saves memory on pages with a lot of multi-frame images. data and discussion please see https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/KZ8EDtEZ9-c BUG=429614 Review URL: https://codereview.chromium.org/688423004 git-svn-id: svn://svn.chromium.org/blink/trunk@185311 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
dmichael@chromium.org authored
The plugin might attempt to call invalidateRect while it is being destroyed, in which case its renderer could be NULL. BUG=432045 Review URL: https://codereview.chromium.org/723733002 git-svn-id: svn://svn.chromium.org/blink/trunk@185308 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
jchaffraix@chromium.org authored
The class was misguided and only needed because we generated the invalidations using this code path before https://codereview.chromium.org/665673004 BUG=407416 Review URL: https://codereview.chromium.org/696703005 git-svn-id: svn://svn.chromium.org/blink/trunk@185307 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
eustas@chromium.org authored
BUG= Review URL: https://codereview.chromium.org/722683003 git-svn-id: svn://svn.chromium.org/blink/trunk@185306 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
yangguo@chromium.org authored
R=jochen@chromium.org, vogelheim@chromium.org Review URL: https://codereview.chromium.org/720783002 git-svn-id: svn://svn.chromium.org/blink/trunk@185305 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
vsevik@chromium.org authored
The test is added disabled since this functionality is currently broken BUG=432493 R=pfeldman, yurys, sergeyv Review URL: https://codereview.chromium.org/724053003 git-svn-id: svn://svn.chromium.org/blink/trunk@185304 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
earthdok@chromium.org authored
This is a partial revert of r184607. Turns out reducing the number of workers was not the right solution for our performance issues. BUG=427569 R=dpranke@chromium.org NOTRY=true TEST=test-webkitpy Review URL: https://codereview.chromium.org/722193002 git-svn-id: svn://svn.chromium.org/blink/trunk@185303 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
sigbjornf@opera.com authored
R=haraken BUG=430337 NOTRY=true Review URL: https://codereview.chromium.org/724083002 git-svn-id: svn://svn.chromium.org/blink/trunk@185302 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
bungeman@chromium.org authored
The gyp is no longer needed, and the defines in the gypi are no longer required. Review URL: https://codereview.chromium.org/717363002 git-svn-id: svn://svn.chromium.org/blink/trunk@185301 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
aandrey@chromium.org authored
TBR=pfeldman Review URL: https://codereview.chromium.org/722273002 git-svn-id: svn://svn.chromium.org/blink/trunk@185300 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
senorblanco@chromium.org authored
TBR=jkummerow@chromium.org,yosin BUG=432907 Review URL: https://codereview.chromium.org/722253002 git-svn-id: svn://svn.chromium.org/blink/trunk@185299 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
jbroman@chromium.org authored
Without setting 'all: initial', it's possible for text colours and such to be inherited by the placeholder, which is unexpected. TEST=fast/plugins/plugin-placeholder-inherit.html BUG=364716 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=184878 Review URL: https://codereview.chromium.org/669883003 git-svn-id: svn://svn.chromium.org/blink/trunk@185298 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mvanouwerkerk@chromium.org authored
I found that I still need a multi purpose dispatcher for the Push API. I'll re-implement the permission request in a followup CL. BUG=389194 Review URL: https://codereview.chromium.org/728443002 git-svn-id: svn://svn.chromium.org/blink/trunk@185297 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
peter@chromium.org authored
Notification events delivered to Service Workers (notificationclick and notificationerror) will receive an instance of the Notification object which they were triggered for, represented through a NotificationEvent. It's of the SW ExtendableEvent type. BUG=432527 Review URL: https://codereview.chromium.org/718093002 git-svn-id: svn://svn.chromium.org/blink/trunk@185296 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
yukishiino@chromium.org authored
By this CL, all the uses of ArrayBuffer in modules/ have been rewritten with DOMArrayBuffer. BUG=235436 Review URL: https://codereview.chromium.org/723143002 git-svn-id: svn://svn.chromium.org/blink/trunk@185295 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
caseq@chromium.org authored
We used to rely on event.thread.target in multiple places where target was needed. These places mostly imply that this was a main target (i.e. using it to get DOMModel & co), while it can now be a different (or null) target. Let's keep main target associated with timeline in Timeline model (and perhaps return null for recorded timelines later) and plumb it where it is necessary. BUG= Review URL: https://codereview.chromium.org/717243002 git-svn-id: svn://svn.chromium.org/blink/trunk@185294 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
jl@opera.com authored
This lets us lose some overloading and code duplication. BUG=430337 Review URL: https://codereview.chromium.org/714123002 git-svn-id: svn://svn.chromium.org/blink/trunk@185293 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
yukishiino@chromium.org authored
Since CSSValue.idl and its family were removed, we no longer need to support [Custom=Wrap]. BUG=235436 Review URL: https://codereview.chromium.org/726553002 git-svn-id: svn://svn.chromium.org/blink/trunk@185292 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
eustas@chromium.org authored
BUG= NOTRY=true Review URL: https://codereview.chromium.org/718033002 git-svn-id: svn://svn.chromium.org/blink/trunk@185291 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
jbroman@chromium.org authored
This allows focus to enter and leave plugin placeholders, so that constituent elements (such as a close button) can be keyboard-focused. TEST=fast/plugins/plugin/placeholder-focus.html BUG=364716 Review URL: https://codereview.chromium.org/717193003 git-svn-id: svn://svn.chromium.org/blink/trunk@185290 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
jl@opera.com authored
When calculating "optionality list" for a method (as part of calculating the effective overload set), treat variadic arguments as optional instead as required. WebIDL defines the optionality list as a list of "required", "optional" and "variadic", whereas we implement it as a list of booleans. A list of booleans is enough to achieve correct behavior, assuming both "optional" and "variadic" are considered to be optional (true). BUG=293561 Review URL: https://codereview.chromium.org/723013003 git-svn-id: svn://svn.chromium.org/blink/trunk@185289 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
senorblanco@chromium.org authored
This reverts commit 97aec2f2a341c96bce31aa8264828135c44e1ccb, aka r185263. This a speculative revert to fix Android Tests (dbg), which is currently blocking the Blink roll. TBR=trchen,pdr BUG= Review URL: https://codereview.chromium.org/723103002 git-svn-id: svn://svn.chromium.org/blink/trunk@185287 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
hiroshige@chromium.org authored
This CL distinguishes specific OOMs (where a lot of super pages are allocated but not committed) from actual OOMs (where a lot of physical memory is allocated) in crash reports. - By crashing in partitionOutOfMemoryWithLotsOfUncommitedPages. - By crashing at a special address (0x9b) in Windows, because reported stack traces are not accurate. This check is enabled on 32-bit environments only. BUG=421387 Review URL: https://codereview.chromium.org/683043002 git-svn-id: svn://svn.chromium.org/blink/trunk@185286 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
pfeldman@chromium.org authored
Review URL: https://codereview.chromium.org/722713002 git-svn-id: svn://svn.chromium.org/blink/trunk@185285 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
rune@opera.com authored
Make the pseudo class a skippable component. This selector is for internal use only, and currently there are no selectors in UA stylesheets that will cause style invalidation with that pseudo class. Still, there is no need to have it in the list of selectors requiring subtree recalc. We do not support testing internal properties in layout tests since there is no api for injecting UA style, but I have added a test that relies on a current bug (see prose in the test itself). R=chrishtr@chromium.org,esprehn@chromium.org BUG=432440 Review URL: https://codereview.chromium.org/705693005 git-svn-id: svn://svn.chromium.org/blink/trunk@185284 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
eroman@chromium.org authored
(WebIDL's "unsigned long" is a 32-bit type) BUG=267360 Review URL: https://codereview.chromium.org/721053002 git-svn-id: svn://svn.chromium.org/blink/trunk@185283 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
horo@chromium.org authored
The spec of Fetch has been changed. https://github.com/whatwg/fetch/commit/30c35ec10994d0005f45879778424e8fc7272bde This change also renames "none" in "no referrer". https://github.com/whatwg/fetch/commit/0576c5aaf0c21545001beb73aae9d8b585c6ece5 BUG=N/A TEST=http/tests/serviceworker Review URL: https://codereview.chromium.org/721103003 git-svn-id: svn://svn.chromium.org/blink/trunk@185282 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
falken@chromium.org authored
According to the spec discussion, it should throw an exception: https://github.com/slightlyoff/ServiceWorker/issues/51#issuecomment-51172079 Existing code happens to handle this case; tweak the error message to make sense for it. BUG=410699 Review URL: https://codereview.chromium.org/723063002 git-svn-id: svn://svn.chromium.org/blink/trunk@185280 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
rmcilroy@chromium.org authored
The blink scheduler exposed a race where the onnoupdate event could happen before the iframe has been loaded, causing the test to become flaky. This fix replaces the use of onnoupdate with an onload event on the iframe. Also remove linux specific expectation since the linux expected result is now the same as all other platforms. BUG=432129 Review URL: https://codereview.chromium.org/720963002 git-svn-id: svn://svn.chromium.org/blink/trunk@185279 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
horo@chromium.org authored
This is duplication of WebURLRequest::RequestContext. BUG=N/A Review URL: https://codereview.chromium.org/726503002 git-svn-id: svn://svn.chromium.org/blink/trunk@185278 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
horo@chromium.org authored
BUG= Review URL: https://codereview.chromium.org/725503002 git-svn-id: svn://svn.chromium.org/blink/trunk@185277 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
n.bansal@samsung.com authored
Blink changes to add support for print preset options for pdf documents. When pdf document has print preset options set, then print preview mode should use those options. This patch adds changes required to get print preset options from plugin. Also, this patch removes getPrintCopiesForPlugin() that was added initially and is no longer required. BUG=169120 Review URL: https://codereview.chromium.org/591053002 git-svn-id: svn://svn.chromium.org/blink/trunk@185276 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
yosin@chromium.org authored
BUG=432822 TBR=trchen@chromium.org, senorblanco@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/723953002 git-svn-id: svn://svn.chromium.org/blink/trunk@185275 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
rego@igalia.com authored
The usage of Length::value() is causing a bug as 25% was translated to 25px, which is wrong. Use valueForLength() instead in order to get the accurate value. Modified current test to add some examples using percentages. BUG=31286,425991 TEST=fast/css/css-properties-position-relative-as-parent-fixed.html Review URL: https://codereview.chromium.org/720003002 git-svn-id: svn://svn.chromium.org/blink/trunk@185274 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
shreeram.k@samsung.com authored
This test was disabled because of changes related to html hr tag were in progress. But now those changes are complete, hence we can enable this layout test. BUG=384723 Review URL: https://codereview.chromium.org/721753004 git-svn-id: svn://svn.chromium.org/blink/trunk@185273 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
siva.gunturi@samsung.com authored
In order to test whether the GPU(Vendor,Renderer,Driver info) is getting fetched properly when creating the context, we need to provide a function to force fail the context on creation, which can be used by test-runner. This patch implements the forceNextWebGLContextCreationToFail. Test-runner can use this further. test-runner-cl which uses forceNextWebGLContextCreationToFail @https://codereview.chromium.org/706193003/ BUG=412440 Review URL: https://codereview.chromium.org/703903002 git-svn-id: svn://svn.chromium.org/blink/trunk@185272 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
yhirano@chromium.org authored
- ResourcePtrBase destructor is non-virtual, so make it protected. - ResourcePtr<R> should accept ResourcePtr<U> only when U* is convertible to R*. - Use static_cast instead of reinterpret_cast. - Delete the unused assignment operator. BUG=None R=tyoshino Review URL: https://codereview.chromium.org/720693002 git-svn-id: svn://svn.chromium.org/blink/trunk@185271 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-