- 04 Sep, 2015 16 commits
-
-
esprehn@chromium.org authored
Review URL: https://codereview.chromium.org/1310713006 git-svn-id: svn://svn.chromium.org/blink/trunk@201768 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
kozyatinskiy@chromium.org authored
This CL adds base support of JQuery event listeners. Listeners which was installed by JQuery are shown in Event Listeners sidebar. API for frameworks are provided. Developers can add own event listeners provider to global devtoolsFrameworkEventListeners array (it should be created if undefined). Provider functions should return two arrays: 1. Array with framework event listeners for current object in eventListeners field in format {type: {string}, useCapture: {boolean}, handler: (function()|Object)}. 2. Array with internal framework event handlers for current object in internalHandlers field - one function per each handler. This array is used for filtering out native internal event handlers. BUG=61643 R=paulirish@chromium.org, pfeldman@chromium.org, yurys@chromium.org Review URL: https://codereview.chromium.org/1268353005 . git-svn-id: svn://svn.chromium.org/blink/trunk@201767 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
esprehn@chromium.org authored
Review URL: https://codereview.chromium.org/1305343007 git-svn-id: svn://svn.chromium.org/blink/trunk@201766 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
yosin@chromium.org authored
This patch introduces template class |VisiblePositionTemplate| like |PositionWithAffinityTemplate| as a preparation of introduce composed tree version of |VisiblePosition|. This patch is a preparation of making selection to handle granularity for web component, http://crrev.com/1277863002 BUG=513568 TEST=n/a; no behavior changes Review URL: https://codereview.chromium.org/1330563005 git-svn-id: svn://svn.chromium.org/blink/trunk@201765 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
pfeldman@chromium.org authored
BUG=506468 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=201676 Review URL: https://codereview.chromium.org/1327593003 git-svn-id: svn://svn.chromium.org/blink/trunk@201763 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
falken@chromium.org authored
It's failing on Linux Leak. Probably r201736 https://codereview.chromium.org/1236913004 missed adding the expectation. Build: https://build.chromium.org/p/chromium.webkit/builders/WebKit%20Linux%20Leak/builds/13880 Leak log: ({"numberOfLiveActiveDOMObjects":[2,4],"numberOfLiveDocuments":[1,2],"numberOfLiveNodes":[4,36],"numberOfLiveResources":[0,2]}) BUG=410974 TBR=tdresser NOTRY=true Review URL: https://codereview.chromium.org/1326083003 git-svn-id: svn://svn.chromium.org/blink/trunk@201762 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
dgozman@chromium.org authored
BUG=386142 Review URL: https://codereview.chromium.org/1314903010 git-svn-id: svn://svn.chromium.org/blink/trunk@201761 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
kinuko@chromium.org authored
Longer term we should clean up initialize code as in crbug.com/519111. BUG=527636 TEST=WorkerThreadTest.StartAndStopImmediately Review URL: https://codereview.chromium.org/1325193002 git-svn-id: svn://svn.chromium.org/blink/trunk@201760 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
falken@chromium.org authored
Some tests have slightly different results after r201644 https://codereview.chromium.org/1308033003, looks like they were just missed when adding the Rebaselines in that patch. BUG=522797 TBR=jbroman NOTRY=true Review URL: https://codereview.chromium.org/1321233003 git-svn-id: svn://svn.chromium.org/blink/trunk@201759 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
caseq@chromium.org authored
BUG=524107 Review URL: https://codereview.chromium.org/1310343007 git-svn-id: svn://svn.chromium.org/blink/trunk@201758 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
kochi@chromium.org authored
With https://codereview.chromium.org/1285413002 now some of WPT shadow-dom tests that used to be flaky are fixed. BUG=503445, 505364, 521960, 520616, 521907, 521913, 521914, 521918, 521929, 521937, 521941 TBR=tkent@chromium.org Review URL: https://codereview.chromium.org/1315523011 git-svn-id: svn://svn.chromium.org/blink/trunk@201757 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
falken@chromium.org authored
Revert of OOPIF: Call setCoreFrame on remote-to-local swaps. (patchset #4 id:60001 of https://codereview.chromium.org/1316863009/ ) Reason for revert: I suspect this change broke webkit_unit_tests on Nexus 4: All/ParameterizedWebFrameTest.RemoteToLocalSwapOnMainFrameInitializesCoreFrame/0 All/ParameterizedWebFrameTest.RemoteToLocalSwapOnMainFrameInitializesCoreFrame/1 All/WebFrameResizeTest.ResizeYieldsCorrectScrollAndScaleForFixedWidth/0 All/WebFrameResizeTest.ResizeYieldsCorrectScrollAndScaleForFixedWidth/1 All/WebFrameResizeTest.ResizeYieldsCorrectScrollAndScaleForMinimumScale/0 All/WebFrameResizeTest.ResizeYieldsCorrectScrollAndScaleForWidthEqualsDeviceWidth/1 All/WebFrameResizeTest.ResizeYieldsCorrectScrollAndScaleForFixedLayout/1 First failing build: https://build.chromium.org/p/chromium.webkit/builders/WebKit%20Android%20%28Nexus4%29/builds/37423 Blamelist: http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=201725:201728&mode=html http://test-results.appspot.com/revision_range?start=347178&end=347178 Original issue's description: > OOPIF: Call setCoreFrame on remote-to-local swaps. > > This ensures that various initializion in setCoreFrame is triggered when > doing remote-to-local swaps. > > BUG=525285 > > Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=201726 TBR=dcheng@chromium.org,alexmos@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=525285 Review URL: https://codereview.chromium.org/1315543009 git-svn-id: svn://svn.chromium.org/blink/trunk@201756 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
timloh@chromium.org authored
This patch makes our namespace handling code in selector parsing to use emptyAtom to represent empty namespaces and nullAtom to represent no namespace (e.g. "|a" vs. "a"), instead of having both as nullAtom and a separate hasNamespace bool. This fixes a bug where we would interpret in prependTypeSelectorIfNeeded an empty namespace as no namespace (i.e. the default namespace). Review URL: https://codereview.chromium.org/1305973007 git-svn-id: svn://svn.chromium.org/blink/trunk@201755 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
pfeldman@chromium.org authored
Review URL: https://codereview.chromium.org/1305353008 git-svn-id: svn://svn.chromium.org/blink/trunk@201754 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
pfeldman@chromium.org authored
BUG=506468 Review URL: https://codereview.chromium.org/1308173008 git-svn-id: svn://svn.chromium.org/blink/trunk@201753 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
kochi@chromium.org authored
imported/web-platform-tests/shadow-dom/shadow-trees/upper-bounary-encapsulation/test-011.html caused a flaky crashes on trybots. When an link element started fetching CSS resource the resource loading happens asynchronously in the background, and when it completes, owner element's state may have changed. In the test, the owner element moved under shadow tree, then asserting condition ASSERT(!linkStyle() || !linkStyle()->hasSheet()). happened. BUG=503445 TEST=imported/web-platform-tests/shadow-dom/shadow-trees/upper-boundary-encapusulation/test-011.html Review URL: https://codereview.chromium.org/1285413002 git-svn-id: svn://svn.chromium.org/blink/trunk@201752 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
- 03 Sep, 2015 24 commits
-
-
jsbell@chromium.org authored
TBR=joelo@chromium.org NOTRY=true BUG=30536,528062 Review URL: https://codereview.chromium.org/1313783009 . git-svn-id: svn://svn.chromium.org/blink/trunk@201751 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
yurys@chromium.org authored
BUG=527736 Review URL: https://codereview.chromium.org/1301323008 git-svn-id: svn://svn.chromium.org/blink/trunk@201750 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
samli@chromium.org authored
This change updates the UI of the animation timeline and removes the pause button. Instead, the pause button is combined into a single control button to pause, play and replay the timeline. BUG=492679,447083 Review URL: https://codereview.chromium.org/1156323003 git-svn-id: svn://svn.chromium.org/blink/trunk@201749 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
alph@chromium.org authored
Review URL: https://codereview.chromium.org/1323293004 git-svn-id: svn://svn.chromium.org/blink/trunk@201748 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
dgozman@chromium.org authored
BUG=468550 Review URL: https://codereview.chromium.org/1315043008 git-svn-id: svn://svn.chromium.org/blink/trunk@201747 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
lgarron@chromium.org authored
Also add a link to toggle the full list. BUG=523591 Review URL: https://codereview.chromium.org/1323263003 git-svn-id: svn://svn.chromium.org/blink/trunk@201746 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
lgarron@chromium.org authored
BUG=525334 Review URL: https://codereview.chromium.org/1323273002 git-svn-id: svn://svn.chromium.org/blink/trunk@201745 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
dgozman@chromium.org authored
BUG=527447 TBR=samli Review URL: https://codereview.chromium.org/1316763009 git-svn-id: svn://svn.chromium.org/blink/trunk@201744 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
joelo@chromium.org authored
http://src.chromium.org/viewvc/blink?view=revision&revision=201719 BUG=522797 TBR=mlamouri@chromium.org Review URL: https://codereview.chromium.org/1322973005 . git-svn-id: svn://svn.chromium.org/blink/trunk@201743 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
wkorman@chromium.org authored
BUG=522215 Review URL: https://codereview.chromium.org/1328803003 git-svn-id: svn://svn.chromium.org/blink/trunk@201742 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
joelo@chromium.org authored
http://src.chromium.org/viewvc/blink?view=revision&revision=201718 BUG=524134 TBR=mlamouri@chromium.org Review URL: https://codereview.chromium.org/1305043006 . git-svn-id: svn://svn.chromium.org/blink/trunk@201741 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
joelo@chromium.org authored
http://src.chromium.org/viewvc/blink?view=revision&revision=201704 BUG=268468 TBR=nainar@chromium.org Review URL: https://codereview.chromium.org/1312363010 . git-svn-id: svn://svn.chromium.org/blink/trunk@201740 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
jchaffraix@chromium.org authored
This change reverts commit f5bd7257166f313f8bed1ceffa2802e6540b53da and 25907d23a2b4a963c879fb44c18ed05ad388f00e. The change has been the cause of numerous regressions (painting and hit-testing clip rects wrongly computed) and several performance regressions. Reverting the change so that I can investigate offline and reland in a smaller bits. BUG=518215,521452,522829,518219 Review URL: https://codereview.chromium.org/1307203004 git-svn-id: svn://svn.chromium.org/blink/trunk@201739 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
fs@opera.com authored
If an update is pending for a <use> shadow tree, the width/height needn't be updated, since the update of the shadow tree will do it. Make sure to clear the reference to the instance root when invalidating the shadow tree. Also split clearResourceReferences into a few different parts. BUG=516051 Review URL: https://codereview.chromium.org/1323443003 git-svn-id: svn://svn.chromium.org/blink/trunk@201738 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
sergeyv@chromium.org authored
BUG= Review URL: https://codereview.chromium.org/1326953002 git-svn-id: svn://svn.chromium.org/blink/trunk@201737 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
tdresser@chromium.org authored
This is a reland of https://codereview.chromium.org/1209183004/, which was reverted because it caused both a memory leak and a sizes regression. This enables scroll customization of touch scrolls for JS. See http://goo.gl/xCBm7L for details. This is a followup to https://codereview.chromium.org/988823003, and completes landing https://codereview.chromium.org/850443002/. This approach replaces the previous approach, from https://codereview.chromium.org/1057603002. BUG=410974 Review URL: https://codereview.chromium.org/1236913004 git-svn-id: svn://svn.chromium.org/blink/trunk@201736 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
samli@chromium.org authored
BUG=447083 Review URL: https://codereview.chromium.org/1324193003 git-svn-id: svn://svn.chromium.org/blink/trunk@201735 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
sigbjornf@opera.com authored
TBR=oilpan-reviews BUG=262211 NOTRY=true Review URL: https://codereview.chromium.org/1329753003 git-svn-id: svn://svn.chromium.org/blink/trunk@201733 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mstensho@opera.com authored
That's just going to leave a column / page blank, without fitting any content better. If the block is too tall to fit in the current column / page, it's going to be just as too tall for the next one as well. BUG=526098 R=jchaffraix@chromium.org Review URL: https://codereview.chromium.org/1318653004 git-svn-id: svn://svn.chromium.org/blink/trunk@201732 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
alexclarke@chromium.org authored
Switch blink over to using the new WebTaskRunner. This is a pure refactor and no business logic has changed. Patch 1: https://codereview.chromium.org/1325073002 Patch 2: https://codereview.chromium.org/1308183005 Patch 4: https://codereview.chromium.org/1309423004 Patch 5: https://codereview.chromium.org/1310253009 BUG=510398, 497761 Review URL: https://codereview.chromium.org/1303153005 git-svn-id: svn://svn.chromium.org/blink/trunk@201731 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
fmalita@chromium.org authored
Instead of a (record-time-rasterized) bitmap SkImage, return an SkImage backed by a recording of the SVG image. R=reed@google.com,schenney@chromium.org,junov@chromium.org Review URL: https://codereview.chromium.org/1327473003 git-svn-id: svn://svn.chromium.org/blink/trunk@201730 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
alexmos@chromium.org authored
BUG=225940 Review URL: https://codereview.chromium.org/1315523010 git-svn-id: svn://svn.chromium.org/blink/trunk@201728 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mcasas@chromium.org authored
This CL adds the Blink classes needed for implementing MediaRecorder API and two tests.This API allows for recording a MediaStream, i.e. a local or remote feed of live media(s). This CL does not include a BlobEvent to communicate recorded data to JS. See DD @ https://goo.gl/vSjzC5 (*) for the plan and https://codereview.chromium.org/1211973012/ for a hack of all Chrome parts. (*) Used to be https://goo.gl/kreaQj BUG=262211 Review URL: https://codereview.chromium.org/1255873002 git-svn-id: svn://svn.chromium.org/blink/trunk@201727 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
alexmos@chromium.org authored
This ensures that various initializion in setCoreFrame is triggered when doing remote-to-local swaps. BUG=525285 Review URL: https://codereview.chromium.org/1316863009 git-svn-id: svn://svn.chromium.org/blink/trunk@201726 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-