Timeline
Dec 6, 2015:
- 11:45 PM Changeset in webkit [193615] by
-
- 2 edits in trunk/Source/WebInspectorUI
Web Inspector: Regression (r192936) - changing selectors in the visual styles sidebar is broken
https://bugs.webkit.org/show_bug.cgi?id=151924
Patch by Devin Rousso <Devin Rousso> on 2015-12-06
Reviewed by Brian Burg.
- UserInterface/Views/VisualStyleSelectorSection.js:
(WebInspector.VisualStyleSelectorSection):
(WebInspector.VisualStyleSelectorSection.prototype._selectorChanged):
Now uses an event listener instead of an "onselect" function.
- 10:27 PM Changeset in webkit [193614] by
-
- 6 edits in trunk/Source/WebCore
Show more information about SVG renderers in showLayerTree() output
https://bugs.webkit.org/show_bug.cgi?id=151930
Reviewed by Zalan Bujtas.
In showLayerTree() output, for SVG renderers show:
- visual and layout overflow, for boxes
- frame rect, for boxes
- layout state
- class and id
- rendering/RenderLayer.cpp:
(WebCore::showLayerTree):
- rendering/RenderTreeAsText.cpp:
(WebCore::RenderTreeAsText::writeRenderObject):
(WebCore::writeDebugInfo): New function to share dumping with svg output.
(WebCore::write):
- rendering/RenderTreeAsText.h:
- rendering/svg/SVGRenderTreeAsText.cpp:
(WebCore::writePositionAndStyle): Show the frameRect for boxes (e.g. RenderSVGRoot).
Much more useful that showing the clippedOverflowRect.
(WebCore::writeStandardPrefix):
(WebCore::writeChildren):
(WebCore::writeSVGResourceContainer):
(WebCore::writeSVGContainer):
(WebCore::write):
(WebCore::writeSVGText):
(WebCore::writeSVGInlineText):
(WebCore::writeSVGImage):
(WebCore::writeSVGGradientStop):
(WebCore::writeResources):
(WebCore::operator<<): Deleted.
- rendering/svg/SVGRenderTreeAsText.h:
- 10:27 PM Changeset in webkit [193613] by
-
- 3 edits2 adds in trunk
Clipping along compositing borders in svg-edit
https://bugs.webkit.org/show_bug.cgi?id=151791
Reviewed by Zalan Bujtas.
Source/WebCore:
RenderSVGRoot::layout() failed to clear overflow before recomputing
visual overflow, which could cause it to get stuck with stale overflow.
This would cause underpainting if its size went from small to large.
Test: svg/overflow/visual-overflow-change.html
- rendering/svg/RenderSVGRoot.cpp:
(WebCore::RenderSVGRoot::layout):
LayoutTests:
Ref test that triggers recomputation of overflow.
- svg/overflow/visual-overflow-change-expected.html: Added.
- svg/overflow/visual-overflow-change.html: Added.
- 10:15 PM Changeset in webkit [193612] by
-
- 8 edits in trunk/Source/WebInspectorUI
Web Inspector: Comparisons in setters should use the massaged value (" = x 0/false/null/etc") https://bugs.webkit.org/show_bug.cgi?id=151910
Reviewed by Timothy Hatcher.
Updated setters that use default values to convert falsy inputs to the default value
before compariing against the current value.
- UserInterface/Models/TimelineMarker.js:
(WebInspector.TimelineMarker.prototype.set time):
Assert new value is a number.
- UserInterface/Views/DataGrid.js:
(WebInspector.DataGridNode.prototype.set hidden):
(WebInspector.DataGridNode.prototype.set data):
Assert new value is of type object. Use shallowEqual compare before setting value.
- UserInterface/Views/GeneralTreeElement.js:
(WebInspector.GeneralTreeElement.prototype.set classNames):
Use shallowEqual compare before setting value.
(WebInspector.GeneralTreeElement.prototype.set mainTitle):
(WebInspector.GeneralTreeElement.prototype.set subtitle):
(WebInspector.GeneralTreeElement.prototype.set status):
(WebInspector.GeneralTreeElement.prototype.set tooltipHandledSeparately):
- UserInterface/Views/TimelineOverview.js:
(WebInspector.TimelineOverview.prototype.set startTime):
(WebInspector.TimelineOverview.prototype.set currentTime):
(WebInspector.TimelineOverview.prototype.set endTime):
(WebInspector.TimelineOverview.prototype.set scrollStartTime):
(WebInspector.TimelineOverview.prototype.set selectionStartTime):
Check current ruler selectionStartTime before setting value.
- UserInterface/Views/TimelineOverviewGraph.js:
(WebInspector.TimelineOverviewGraph.prototype.set zeroTime):
(WebInspector.TimelineOverviewGraph.prototype.set startTime):
(WebInspector.TimelineOverviewGraph.prototype.set endTime):
(WebInspector.TimelineOverviewGraph.prototype.set currentTime):
- UserInterface/Views/TimelineRuler.js:
(WebInspector.TimelineRuler):
(WebInspector.TimelineRuler.prototype.set allowsClippedLabels):
(WebInspector.TimelineRuler.prototype.set formatLabelCallback):
(WebInspector.TimelineRuler.prototype.set allowsTimeRangeSelection):
(WebInspector.TimelineRuler.prototype.set zeroTime):
(WebInspector.TimelineRuler.prototype.set startTime):
(WebInspector.TimelineRuler.prototype.set endTime):
(WebInspector.TimelineRuler.prototype.set secondsPerPixel):
(WebInspector.TimelineRuler.prototype.set selectionStartTime):
(WebInspector.TimelineRuler.prototype.set selectionEndTime):
(WebInspector.TimelineRuler.prototype.set duration): Deleted.
The ruler duration and "pinned" state are controlled by setting an end
time. Removed since it wasn't being used, and there shouldn't be two
ways to the exact same thing.
- UserInterface/Views/TimelineView.js:
(WebInspector.TimelineView.prototype.set zeroTime):
(WebInspector.TimelineView.prototype.set startTime):
(WebInspector.TimelineView.prototype.set endTime):
- 10:13 PM Changeset in webkit [193611] by
-
- 5 edits3 adds in trunk
[INTL] Implement String.prototype.toLocaleLowerCase in ECMA-402
https://bugs.webkit.org/show_bug.cgi?id=147608
Patch by Andy VanWagoner <thetalecrafter@gmail.com> on 2015-12-06
Reviewed by Benjamin Poulain.
Source/JavaScriptCore:
Add toLocaleLowerCase using icu u_strToLower.
- runtime/IntlObject.cpp:
(JSC::defaultLocale): Expose.
(JSC::bestAvailableLocale): Expose.
(JSC::removeUnicodeLocaleExtension): Expose.
- runtime/IntlObject.h:
- runtime/StringPrototype.cpp:
(JSC::StringPrototype::finishCreation):
(JSC::stringProtoFuncToLocaleLowerCase): Add.
LayoutTests:
- js/script-tests/string-toLocaleLowerCase.js: Added.
- js/string-toLocaleLowerCase-expected.txt: Added.
- js/string-toLocaleLowerCase.html: Added.
- 9:14 PM Changeset in webkit [193610] by
-
- 6 edits2 adds in trunk
REGRESSION (r187121): Can't get to the main content of the page at https://theintercept.com/drone-papers/
https://bugs.webkit.org/show_bug.cgi?id=151849
rdar://problem/23132828
Reviewed by Zalan Bujtas.
Source/WebCore:
This page uses a fill-forwards animation where the last keyframe has height: auto.
After r187121, we tried to blend the height Length value from the last keyframe to the
first keyframe with progress=0 (which should pick up the 'auto' from the last keyframe).
However, Length::blend() just considered both 0 and 'auto' to be zero, and returned
the 0 length.
So fix Length::blend() to return the "from" length if progress is zero.
Test: animations/fill-forwards-auto-height.html
- page/animation/CSSPropertyAnimation.cpp:
(WebCore::blendFunc): Length::blend takes a double, so don't narrow to float.
- page/animation/KeyframeAnimation.cpp:
(WebCore::KeyframeAnimation::fetchIntervalEndpointsForProperty): Declare two variables
at first use.
- platform/Length.h:
(WebCore::Length::blend):
LayoutTests:
New ref test.
The behavior of imported/blink/transitions/transition-not-interpolable.html changed
with this patch, but that test is trying to determine if transitions run to/from
'auto' values, and doing it wrong. The current patch doesn't change the user-visible
behavior of transitions with 'auto' endpoints (covered by http://webkit.org/b/38243).
- animations/fill-forwards-auto-height-expected.html: Added.
- animations/fill-forwards-auto-height.html: Added.
- imported/blink/transitions/transition-not-interpolable-expected.txt:
- 8:55 PM Changeset in webkit [193609] by
-
- 2 edits in trunk/Source/WebCore
Give SVGTransformList some inline vector capacity
https://bugs.webkit.org/show_bug.cgi?id=151644
Reviewed by Andreas Kling.
Giving SVGTransformList inline capacity of one drops time under SVGTransformList::parse() by
about 1% on http://animateplus.com/demos/stress-test/
- svg/SVGTransformList.h:
- 8:40 PM Changeset in webkit [193608] by
-
- 2 edits in trunk/Source/WebCore
Addressing post-review comments on r193374.
Reviewed by Antti Koivisto.
- rendering/SimpleLineLayout.cpp:
(WebCore::SimpleLineLayout::canUseForText):
(WebCore::SimpleLineLayout::canUseForFontAndText):
(WebCore::SimpleLineLayout::canUseForStyle):
(WebCore::SimpleLineLayout::canUseForWithReason):
(WebCore::SimpleLineLayout::canUseFor):
(WebCore::SimpleLineLayout::printSimpleLineLayoutBlockList):
(WebCore::SimpleLineLayout::printSimpleLineLayoutCoverage):
- 7:27 PM Changeset in webkit [193607] by
-
- 2 edits in trunk/Tools
TestNetscapePlugIn: Fix leaks found by static analyzer
<http://webkit.org/b/151881>
Reviewed by Darin Adler.
Fixes the following leaks found by the static analyzer:
DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:808:16: warning: Potential leak of memory pointed to by 'path'
return false;
DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:808:16: warning: Potential leak of memory pointed to by 'target'
return false;
DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:808:16: warning: Potential leak of memory pointed to by 'url'
return false;
- DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
(toCString): Switch to returning std::unique_ptr<char[]>. Add
early return if allocation fails.
(testPostURLFile): Switch to using std::unique_ptr<char[]>.
Make sure to call fclose() on filehandle, even for an early
return.
(testSetStatus): Switch to using std::unique_ptr<char[]>.
- 5:54 PM Changeset in webkit [193606] by
-
- 62 edits1 add13 deletes in trunk
REGRESSION(r193584): Causes heap use-after-free crashes in Web Inspector tests with AddressSanitizer (Requested by ddkilzer on #webkit).
https://bugs.webkit.org/show_bug.cgi?id=151929
Reverted changeset:
"[ES6] "super" and "this" should be lexically bound inside an
arrow function and should live in a JSLexicalEnvironment"
https://bugs.webkit.org/show_bug.cgi?id=149338
http://trac.webkit.org/changeset/193584
- 5:16 PM Changeset in webkit [193605] by
-
- 5 edits in branches/safari-601-branch/Source
Versioning.
- 5:14 PM Changeset in webkit [193604] by
-
- 1 copy in tags/Safari-601.5.4
New tag.
- 5:09 PM Changeset in webkit [193603] by
-
- 2 edits in trunk/Source/JavaScriptCore
[es6] Arrow function syntax. Fix tests after 149338 landing
https://bugs.webkit.org/show_bug.cgi?id=151927
Patch by Skachkov Oleksandr <gskachkov@gmail.com> on 2015-12-06
Reviewed by Saam Barati.
After landing patch for 149338 errors appear in for ES6 Generator. Current fix is removed assert
that was removed by patch with implemenation of ES6 Generator.
- runtime/CommonSlowPaths.cpp:
- 4:41 PM Changeset in webkit [193602] by
-
- 5 edits in branches/safari-601.1.46-branch/Source
Versioning.
- 4:40 PM Changeset in webkit [193601] by
-
- 1 copy in tags/Safari-601.1.46.84
New tag.
- 3:07 PM Changeset in webkit [193600] by
-
- 2 edits in branches/safari-601.1.46-branch/Source/WebCore
Merged r193599. rdar://problem/23769689
- 3:00 PM Changeset in webkit [193599] by
-
- 2 edits in branches/safari-601-branch/Source/WebCore
REGRESSION (r193575): variantSettings is unused when PLATFORM_FONT_LOOKUP is disabled
<rdar://problem/23769741>
- platform/graphics/mac/FontCacheMac.mm:
(WebCore::fontWithFamily): Mark variantSettings as ununsed when
PLATFORM_FONT_LOOKUP is disabled.
- 2:43 PM Changeset in webkit [193598] by
-
- 5 edits in branches/safari-601-branch/LayoutTests
REGRESSION (r193575): Conflict markers left in test files
<rdar://problem/23769741>
When trunk r190192 was merged to safari-601-branch, there were
some conflict markers left in test files. This commit resolves
those conflicts the same way I did when I merged r193575 to
safari-601.1.46-branch.
- fast/css/getComputedStyle/computed-style-expected.txt:
- fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
- svg/css/getComputedStyle-basic-expected.txt:
- Resolve conflicts to take updated font properties, but to ignore -webkit-grid changes.
- platform/mac/TestExpectations: Remove duplicate entries and
take expectations for css3/font-* tests from trunk.
- 2:25 PM Changeset in webkit [193597] by
-
- 33 edits in tags/Safari-602.1.13.1
Roll out r192796. rdar://problem/23763584
- 2:23 PM Changeset in webkit [193596] by
-
- 19 edits1 copy in tags/Safari-602.1.13.1
Roll out r192808. rdar://problem/23763584
- 2:20 PM Changeset in webkit [193595] by
-
- 4 edits in branches/safari-601.1.46-branch/Source/WebCore
Merge r188114. rdar://problem/23221171
- 2:10 PM Changeset in webkit [193594] by
-
- 3 edits in branches/safari-601.1.46-branch/Source/WebCore
Merge r190895. rdar://problem/23769765
- 2:03 PM Changeset in webkit [193593] by
-
- 5 edits in branches/safari-601.1.46-branch
Merge r190999. rdar://problem/23770070
- 2:03 PM Changeset in webkit [193592] by
-
- 4 edits in branches/safari-601-branch/Source/WebCore
Merged r188114. rdar://problem/23769852
- 1:59 PM Changeset in webkit [193591] by
-
- 5 edits in tags/Safari-602.1.13.1/Source
Versioning.
- 1:53 PM Changeset in webkit [193590] by
-
- 2 edits in branches/safari-601.1.46-branch/Tools
Merge r191032. rdar://problem/23769702
- 1:53 PM Changeset in webkit [193589] by
-
- 15 edits2 copies2 adds9 deletes in branches/safari-601.1.46-branch
Merge r190848. rdar://problem/23769702
- 1:48 PM Changeset in webkit [193588] by
-
- 1 copy in tags/Safari-602.1.13.1
New tag.
- 1:32 PM Changeset in webkit [193587] by
-
- 8 edits1 add in branches/safari-601.1.46-branch
Merge r190697. rdar://problem/23769727
- 1:21 PM Changeset in webkit [193586] by
-
- 2 edits in branches/safari-601.1.46-branch/Source/WebCore
Merge r190402. rdar://problem/23769689
- 1:20 PM Changeset in webkit [193585] by
-
- 42 edits in branches/safari-601.1.46-branch
Merge r190192. rdar://problem/23769689
- 12:56 PM Changeset in webkit [193584] by
-
- 63 edits13 adds1 delete in trunk
[ES6] "super" and "this" should be lexically bound inside an arrow function and should live in a JSLexicalEnvironment
https://bugs.webkit.org/show_bug.cgi?id=149338
Source/JavaScriptCore:
Patch by Aleksandr Skachkov <gskachkov@gmail.com> on 2015-12-05
Reviewed by Saam Barati.
Implemented new version of the lexically bound 'this' in arrow function. In current version
'this' is stored inside of the lexical environment of the function. To store and load we use
op_get_from_scope and op_put_to_scope operations. Also new implementation prevent raising TDZ
error for arrow functions that are declared before super() but invoke after.
- builtins/BuiltinExecutables.cpp:
(JSC::createExecutableInternal):
- bytecode/BytecodeList.json:
- bytecode/BytecodeUseDef.h:
- bytecode/CodeBlock.cpp:
(JSC::CodeBlock::dumpBytecode):
- bytecode/EvalCodeCache.h:
(JSC::EvalCodeCache::getSlow):
- bytecode/ExecutableInfo.h:
(JSC::ExecutableInfo::ExecutableInfo):
(JSC::ExecutableInfo::isDerivedConstructorContext):
(JSC::ExecutableInfo::isArrowFunctionContext):
- bytecode/UnlinkedCodeBlock.cpp:
(JSC::UnlinkedCodeBlock::UnlinkedCodeBlock):
- bytecode/UnlinkedCodeBlock.h:
(JSC::UnlinkedCodeBlock::isArrowFunction):
(JSC::UnlinkedCodeBlock::isDerivedConstructorContext):
(JSC::UnlinkedCodeBlock::isArrowFunctionContext):
- bytecode/UnlinkedFunctionExecutable.cpp:
(JSC::generateUnlinkedFunctionCodeBlock):
(JSC::UnlinkedFunctionExecutable::UnlinkedFunctionExecutable):
- bytecode/UnlinkedFunctionExecutable.h:
- bytecompiler/BytecodeGenerator.cpp:
(JSC::BytecodeGenerator::BytecodeGenerator):
(JSC::BytecodeGenerator::initializeArrowFunctionContextScopeIfNeeded):
(JSC::BytecodeGenerator::variable):
(JSC::BytecodeGenerator::emitNewArrowFunctionExpression):
(JSC::BytecodeGenerator::emitLoadArrowFunctionLexicalEnvironment):
(JSC::BytecodeGenerator::emitLoadThisFromArrowFunctionLexicalEnvironment):
(JSC::BytecodeGenerator::emitLoadNewTargetFromArrowFunctionLexicalEnvironment):
(JSC::BytecodeGenerator::emitLoadDerivedConstructorFromArrowFunctionLexicalEnvironment):
(JSC::BytecodeGenerator::emitPutNewTargetToArrowFunctionContextScope):
(JSC::BytecodeGenerator::emitPutDerivedConstructorToArrowFunctionContextScope):
(JSC::BytecodeGenerator::emitPutThisToArrowFunctionContextScope):
- bytecompiler/BytecodeGenerator.h:
(JSC::BytecodeGenerator::isDerivedConstructorContext):
(JSC::BytecodeGenerator::usesArrowFunction):
(JSC::BytecodeGenerator::needsToUpdateArrowFunctionContext):
(JSC::BytecodeGenerator::usesEval):
(JSC::BytecodeGenerator::usesThis):
(JSC::BytecodeGenerator::newTarget):
(JSC::BytecodeGenerator::makeFunction):
- bytecompiler/NodesCodegen.cpp:
(JSC::ThisNode::emitBytecode):
(JSC::SuperNode::emitBytecode):
(JSC::EvalFunctionCallNode::emitBytecode):
(JSC::FunctionCallValueNode::emitBytecode):
(JSC::FunctionNode::emitBytecode):
- debugger/DebuggerCallFrame.cpp:
(JSC::DebuggerCallFrame::evaluate):
- dfg/DFGAbstractInterpreterInlines.h:
- dfg/DFGByteCodeParser.cpp:
(JSC::DFG::ByteCodeParser::parseBlock):
- dfg/DFGCapabilities.cpp:
- dfg/DFGClobberize.h:
- dfg/DFGDoesGC.cpp:
- dfg/DFGFixupPhase.cpp:
- dfg/DFGNodeType.h:
- dfg/DFGObjectAllocationSinkingPhase.cpp:
- dfg/DFGPredictionPropagationPhase.cpp:
- dfg/DFGPromotedHeapLocation.cpp:
- dfg/DFGPromotedHeapLocation.h:
- dfg/DFGSafeToExecute.h:
- dfg/DFGSpeculativeJIT.cpp:
- dfg/DFGSpeculativeJIT.h:
- dfg/DFGSpeculativeJIT32_64.cpp:
- dfg/DFGSpeculativeJIT64.cpp:
- ftl/FTLCapabilities.cpp:
- ftl/FTLLowerDFGToLLVM.cpp:
- ftl/FTLOperations.cpp:
(JSC::FTL::operationMaterializeObjectInOSR):
- interpreter/Interpreter.cpp:
(JSC::eval):
- jit/JIT.cpp:
- jit/JIT.h:
- jit/JITOpcodes.cpp:
(JSC::JIT::emitNewFuncExprCommon):
- jit/JITOpcodes32_64.cpp:
- llint/LLIntSlowPaths.cpp:
(JSC::LLInt::LLINT_SLOW_PATH_DECL):
- llint/LowLevelInterpreter.asm:
- llint/LowLevelInterpreter32_64.asm:
- llint/LowLevelInterpreter64.asm:
- parser/ASTBuilder.h:
(JSC::ASTBuilder::createArrowFunctionExpr):
(JSC::ASTBuilder::usesArrowFunction):
- parser/Nodes.h:
(JSC::ScopeNode::usesArrowFunction):
- parser/Parser.cpp:
(JSC::Parser<LexerType>::parseFunctionInfo):
- parser/ParserModes.h:
- runtime/CodeCache.cpp:
(JSC::CodeCache::getGlobalCodeBlock):
(JSC::CodeCache::getProgramCodeBlock):
(JSC::CodeCache::getEvalCodeBlock):
(JSC::CodeCache::getModuleProgramCodeBlock):
(JSC::CodeCache::getFunctionExecutableFromGlobalCode):
- runtime/CodeCache.h:
- runtime/CommonIdentifiers.h:
- runtime/CommonSlowPaths.cpp:
(JSC::SLOW_PATH_DECL):
- runtime/Executable.cpp:
(JSC::ScriptExecutable::ScriptExecutable):
(JSC::EvalExecutable::create):
(JSC::EvalExecutable::EvalExecutable):
(JSC::ProgramExecutable::ProgramExecutable):
(JSC::ModuleProgramExecutable::ModuleProgramExecutable):
(JSC::FunctionExecutable::FunctionExecutable):
- runtime/Executable.h:
(JSC::ScriptExecutable::isArrowFunctionContext):
(JSC::ScriptExecutable::isDerivedConstructorContext):
- runtime/JSGlobalObject.cpp:
(JSC::JSGlobalObject::createEvalCodeBlock):
- runtime/JSGlobalObject.h:
- runtime/JSGlobalObjectFunctions.cpp:
(JSC::globalFuncEval):
- tests/es6.yaml:
- tests/stress/arrowfunction-activation-sink-osrexit.js:
- tests/stress/arrowfunction-activation-sink.js:
- tests/stress/arrowfunction-lexical-bind-newtarget.js: Added.
- tests/stress/arrowfunction-lexical-bind-supercall-1.js: Added.
- tests/stress/arrowfunction-lexical-bind-supercall-2.js: Added.
- tests/stress/arrowfunction-lexical-bind-supercall-3.js: Added.
- tests/stress/arrowfunction-lexical-bind-supercall-4.js: Added.
- tests/stress/arrowfunction-lexical-bind-this-1.js:
- tests/stress/arrowfunction-lexical-bind-this-7.js: Added.
- tests/stress/arrowfunction-tdz-1.js: Added.
- tests/stress/arrowfunction-tdz-2.js: Added.
- tests/stress/arrowfunction-tdz-3.js: Added.
- tests/stress/arrowfunction-tdz-4.js: Added.
- tests/stress/arrowfunction-tdz.js: Removed.
LayoutTests:
Patch by Skachkov Oleksandr <gskachkov@gmail.com> on 2015-12-06
Reviewed by Saam Barati.
- js/arrowfunction-supercall-expected.txt: Added.
- js/arrowfunction-supercall.html: Added.
- js/arrowfunction-tdz-expected.txt: Added new expectation.
- js/script-tests/arrowfunction-supercall.js: Added.
- js/script-tests/arrowfunction-tdz.js: Added new cases.
- 12:40 PM Changeset in webkit [193583] by
-
- 19 edits in branches/safari-601.1.46-branch
Merge r190564. rdar://problem/23769693
- 10:40 AM Changeset in webkit [193582] by
-
- 4 adds in branches/safari-601-branch/Tools
Build fixes
- 4:33 AM WebKitGTK/SpeedUpBuild edited by
- (diff)
- 4:31 AM WebKitGTK/SpeedUpBuild edited by
- (diff)
- 2:37 AM Changeset in webkit [193581] by
-
- 2 edits in branches/safari-601-branch/Tools
Merge r191032. rdar://problem/23769770
- 2:37 AM Changeset in webkit [193580] by
-
- 3 edits in branches/safari-601-branch/Source/WebCore
Merge r190895. rdar://problem/23769817
- 2:37 AM Changeset in webkit [193579] by
-
- 5 edits in branches/safari-601-branch
Merge r190999. rdar://problem/23769821
- 2:37 AM Changeset in webkit [193578] by
-
- 15 edits9 deletes in branches/safari-601-branch
Merge r190848. rdar://problem/23769770
- 2:37 AM Changeset in webkit [193577] by
-
- 8 edits1 add in branches/safari-601-branch
Merge r190697. rdar://problem/23769789
- 2:37 AM Changeset in webkit [193576] by
-
- 2 edits in branches/safari-601-branch/Source/WebCore
Merge r190402. rdar://problem/23769741
- 2:37 AM Changeset in webkit [193575] by
-
- 42 edits in branches/safari-601-branch
Merge r190192. rdar://problem/23769741
- 12:10 AM Changeset in webkit [193574] by
-
- 2 edits in branches/safari-601.1.46-branch/LayoutTests
Merged r191646. rdar://problem/23766315
- 12:09 AM Changeset in webkit [193573] by
-
- 22 edits6 copies in branches/safari-601.1.46-branch
Merged r191644. rdar://problem/23766315
Dec 5, 2015:
- 11:58 PM Changeset in webkit [193572] by
-
- 31 edits4 copies in branches/safari-601-branch/Source/WebCore
Merged r193479. rdar://problem/23581547
- 11:57 PM Changeset in webkit [193571] by
-
- 17 edits in branches/safari-601-branch/Source/WebCore
Merged r190202. rdar://problem/23581547
- 11:27 PM Changeset in webkit [193570] by
-
- 5 edits2 deletes in branches/safari-601-branch
Roll out r193474. rdar://problem/23732400
- 11:27 PM Changeset in webkit [193569] by
-
- 17 edits in branches/safari-601-branch/Source/WebKit2
Roll out r193475. rdar://problem/23732400
- 11:27 PM Changeset in webkit [193568] by
-
- 3 edits in branches/safari-601-branch/Source/WebKit2
Roll out r193476. rdar://problem/23732400
- 11:27 PM Changeset in webkit [193567] by
-
- 18 edits6 deletes in branches/safari-601-branch
Roll out r193478. rdar://problem/23732400
- 11:18 PM Changeset in webkit [193566] by
-
- 3 edits in trunk/Source/JavaScriptCore
[JSC] Remove FTLOutput's fence support
https://bugs.webkit.org/show_bug.cgi?id=151909
Patch by Benjamin Poulain <bpoulain@apple.com> on 2015-12-05
Reviewed by Sam Weinig.
Unused code is unused.
- ftl/FTLB3Output.h:
(JSC::FTL::Output::fence): Deleted.
(JSC::FTL::Output::fenceAcqRel): Deleted.
- ftl/FTLOutput.h:
(JSC::FTL::Output::fence): Deleted.
(JSC::FTL::Output::fenceAcqRel): Deleted.
- 11:11 PM Changeset in webkit [193565] by
-
- 14 edits4 copies in branches/safari-601.1.46-branch
Merged r192953. rdar://problem/23221158
- 11:09 PM Changeset in webkit [193564] by
-
- 15 edits16 copies in branches/safari-601.1.46-branch
Merged r191252. rdar://problem/23772886
- 11:08 PM Changeset in webkit [193563] by
-
- 2 edits in branches/safari-601.1.46-branch/Source/WebCore
Merged r191201. rdar://problem/23772887
- 11:07 PM Changeset in webkit [193562] by
-
- 7 edits10 copies in branches/safari-601.1.46-branch
Merged r191178. rdar://problem/23772888
- 11:04 PM Changeset in webkit [193561] by
-
- 14 edits10 copies6 deletes in branches/safari-601.1.46-branch
Merged r191151. rdar://problem/23772885
- 10:24 PM Changeset in webkit [193560] by
-
- 4 edits in branches/safari-601.1.46-branch/Source/WebCore
Merged r191825. rdar://problem/23221179
- 10:23 PM Changeset in webkit [193559] by
-
- 29 edits7 copies in branches/safari-601.1.46-branch
Merged r191128. rdar://problem/23221179
- 10:21 PM Changeset in webkit [193558] by
-
- 13 edits in branches/safari-601.1.46-branch/Source/WebCore
Merged r190231. rdar://problem/23772890
- 10:19 PM Changeset in webkit [193557] by
-
- 19 edits3 copies in branches/safari-601.1.46-branch
Merged r190209. rdar://problem/23772891
- 10:16 PM Changeset in webkit [193556] by
-
- 18 edits1 copy in branches/safari-601.1.46-branch
Merged r191452. rdar://problem/23766290
- 10:14 PM Changeset in webkit [193555] by
-
- 3 edits in branches/safari-601.1.46-branch/Source/WebKit2
Merged r191409. rdar://problem/23766303
- 10:12 PM Changeset in webkit [193554] by
-
- 17 edits in branches/safari-601.1.46-branch/Source/WebKit2
Merged r191309. rdar://problem/23766300
- 10:09 PM Changeset in webkit [193553] by
-
- 5 edits2 copies in branches/safari-601.1.46-branch
Merged r191072. rdar://problem/23766294
- 9:56 PM Changeset in webkit [193552] by
-
- 2 edits in branches/safari-601.1.46-branch/Source/WebCore
Merge r192129. rdar://problem/23221177
- 9:56 PM Changeset in webkit [193551] by
-
- 7 edits2 adds in branches/safari-601.1.46-branch
Merge r191981. rdar://problem/23221177
- 9:56 PM Changeset in webkit [193550] by
-
- 2 edits in branches/safari-601-branch/Source/WebCore
Merge r192129. rdar://problem/23732379
- 9:56 PM Changeset in webkit [193549] by
-
- 7 edits2 adds in branches/safari-601-branch
Merge r191981. rdar://problem/23732379
- 7:08 PM Changeset in webkit [193548] by
-
- 2 edits in branches/safari-601.1.46-branch/Source/WebCore
Merge r191155. rdar://problem/23772889
- 6:57 PM Changeset in webkit [193547] by
-
- 2 edits in branches/safari-601.1.46-branch/LayoutTests
Merge r190868. rdar://problem/23769564
- 6:57 PM Changeset in webkit [193546] by
-
- 10 edits2 copies in branches/safari-601.1.46-branch
Merge r190667. rdar://problem/23769564
- 6:57 PM Changeset in webkit [193545] by
-
- 7 edits in branches/safari-601.1.46-branch
Merge r188604. rdar://problem/23769564
- 6:10 PM Changeset in webkit [193544] by
-
- 4 edits in branches/safari-601.1.46-branch/Tools
Merge r189943. rdar://problem/23769685
- 6:10 PM Changeset in webkit [193543] by
-
- 4 edits10 adds in branches/safari-601.1.46-branch
Merge r189890. rdar://problem/23769685
- 5:54 PM Changeset in webkit [193542] by
-
- 15 edits in branches/safari-601.1.46-branch/Source/WebCore
Merge r188130. rdar://problem/23769683
- 5:54 PM Changeset in webkit [193541] by
-
- 2 edits in branches/safari-601.1.46-branch/Source/WebCore
Merge r187709. rdar://problem/23769683
- 5:54 PM Changeset in webkit [193540] by
-
- 7 edits in branches/safari-601.1.46-branch/Source/WebCore
Merge r188168. rdar://problem/23769683
- 5:54 PM Changeset in webkit [193539] by
-
- 8 edits4 adds in branches/safari-601.1.46-branch
Merge r188146. rdar://problem/23769683
- 5:54 PM Changeset in webkit [193538] by
-
- 6 edits in branches/safari-601.1.46-branch/Source/WebCore
Merge r187982. rdar://problem/23769683
- 4:46 PM Changeset in webkit [193537] by
-
- 19 edits in branches/safari-601-branch
Merge r190564. rdar://problem/23769747
- 2:02 PM Changeset in webkit [193536] by
-
- 2 edits in trunk/Websites/webkit.org
One last fix for https redirect.
- wp-content/themes/webkit/.htaccess:
- 1:55 PM Changeset in webkit [193535] by
-
- 2 edits in trunk/Websites/webkit.org
Attempt to fix www redirect again.
- wp-content/themes/webkit/.htaccess:
- 1:41 PM Changeset in webkit [193534] by
-
- 2 edits in trunk/Websites/webkit.org
Fix www redirect again.
- wp-content/themes/webkit/.htaccess:
- 1:40 PM Changeset in webkit [193533] by
-
- 14 edits3 copies7 adds in branches/safari-601-branch
Merge r192953. rdar://problem/23581540
- 1:39 PM Changeset in webkit [193532] by
-
- 3 edits in trunk/Websites/webkit.org
Fix www redirect when https was used and restore status URL code.
- wp-content/themes/webkit/.htaccess:
- wp-content/themes/webkit/status.php:
- 1:26 PM Changeset in webkit [193531] by
-
- 2 edits in trunk/Websites/webkit.org
Another attempt to fix a 404 error when the site loads via www.webkit.org.
- wp-content/themes/webkit/status.php:
- 1:17 PM Changeset in webkit [193530] by
-
- 2 edits in trunk/Websites/webkit.org
Fix a 404 error when the site loads via www.webkit.org.
- wp-content/themes/webkit/status.php:
- 11:54 AM Changeset in webkit [193529] by
-
- 15 edits16 adds in branches/safari-601-branch
Merge r191252. rdar://problem/23772905
- 11:54 AM Changeset in webkit [193528] by
-
- 2 edits in branches/safari-601-branch/Source/WebCore
Merge r191201. rdar://problem/23772907
- 11:54 AM Changeset in webkit [193527] by
-
- 7 edits10 adds in branches/safari-601-branch
Merge r191178. rdar://problem/23772788
- 11:54 AM Changeset in webkit [193526] by
-
- 2 edits in branches/safari-601-branch/Source/WebCore
Merge r191155. rdar://problem/23772908
- 11:54 AM Changeset in webkit [193525] by
-
- 14 edits6 moves4 adds in branches/safari-601-branch
Merge r191151. rdar://problem/23772904
- 10:30 AM Changeset in webkit [193524] by
-
- 15 edits in branches/safari-601-branch/Source/WebCore
Merge r188130. rdar://problem/23769732
- 10:30 AM Changeset in webkit [193523] by
-
- 2 edits in branches/safari-601-branch/Source/WebCore
Merge r187709. rdar://problem/23769732
- 10:30 AM Changeset in webkit [193522] by
-
- 2 edits in branches/safari-601-branch/LayoutTests
Merge r190868. rdar://problem/23769584
- 10:30 AM Changeset in webkit [193521] by
-
- 10 edits2 copies in branches/safari-601-branch
Merge r190667. rdar://problem/23769584
- 10:30 AM Changeset in webkit [193520] by
-
- 7 edits in branches/safari-601-branch
Merge r188604. rdar://problem/23769584
- 10:30 AM Changeset in webkit [193519] by
-
- 4 edits in branches/safari-601-branch/Tools
Merge r189943. rdar://problem/23769735
- 10:30 AM Changeset in webkit [193518] by
-
- 4 edits10 adds in branches/safari-601-branch
Merge r189890. rdar://problem/23769735
- 10:30 AM Changeset in webkit [193517] by
-
- 7 edits in branches/safari-601-branch/Source/WebCore
Merge r188168. rdar://problem/23769732
- 10:30 AM Changeset in webkit [193516] by
-
- 8 edits4 adds in branches/safari-601-branch
Merge r188146. rdar://problem/23769732
- 10:29 AM Changeset in webkit [193515] by
-
- 6 edits in branches/safari-601-branch/Source/WebCore
Merge r187982. rdar://problem/23769732
- 9:08 AM Changeset in webkit [193514] by
-
- 2 edits in trunk/Tools
prepare-ChangeLog: Fix some warning messages when using svn
<http://webkit.org/b/151914>
Reviewed by Daniel Bates.
- Scripts/prepare-ChangeLog:
(generateFunctionLists): Simplify logic so that we never call
normalizePath() with an undefined value.
(attributeCommand): Quote $subPath for the shell so that we
don't try to run "svn propget" on invalid paths.
- 5:53 AM Changeset in webkit [193513] by
-
- 2 edits in trunk/LayoutTests
REGRESSION (r193487): Modern IDB: storage/indexeddb/index-multientry.html crashes
- platform/mac-wk1/TestExpectations: Skip test that crashes
on every run: storage/indexeddb/index-multientry.html.