diff --git a/.github/workflows/ci-master-only.yml b/.github/workflows/ci-master-only.yml index 8975e073c..133da89a6 100644 --- a/.github/workflows/ci-master-only.yml +++ b/.github/workflows/ci-master-only.yml @@ -8,7 +8,7 @@ on: jobs: cocoapods-lint: env: - DEVELOPER_DIR: /Applications/Xcode_26.0.1.app/Contents/Developer + DEVELOPER_DIR: /Applications/Xcode_26.5.0.app/Contents/Developer name: Verify that podspec lints runs-on: macos-latest steps: diff --git a/.github/workflows/ci-pull-requests-only.yml b/.github/workflows/ci-pull-requests-only.yml index a55ee5ace..73f7c7b08 100644 --- a/.github/workflows/ci-pull-requests-only.yml +++ b/.github/workflows/ci-pull-requests-only.yml @@ -8,7 +8,7 @@ on: jobs: buildsh: env: - DEVELOPER_DIR: /Applications/Xcode_26.0.1.app/Contents/Developer + DEVELOPER_DIR: /Applications/Xcode_26.5.0.app/Contents/Developer strategy: matrix: mode: [cocoapods-lint-default-subspecs, cocoapods-lint-other-subspecs] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9e96d759..862652e98 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: [push, pull_request] jobs: buildsh: env: - DEVELOPER_DIR: /Applications/Xcode_26.0.1.app/Contents/Developer + DEVELOPER_DIR: /Applications/Xcode_26.5.0.app/Contents/Developer strategy: matrix: mode: [tests, framework, life-without-cocoapods, carthage, examples-pt1, examples-pt2, examples-pt3, examples-pt4] diff --git a/Source/ASCollectionNode.h b/Source/ASCollectionNode.h index 8814a362e..453393354 100644 --- a/Source/ASCollectionNode.h +++ b/Source/ASCollectionNode.h @@ -547,6 +547,11 @@ NS_ASSUME_NONNULL_BEGIN */ - (nullable id)contextForSection:(NSInteger)section AS_WARN_UNUSED_RESULT; +/** + Force a check for batch fetching. Ignores if the user is scrolling. + */ +- (void)forceCheckForBatchFetching; + @end @interface ASCollectionNode (Deprecated) diff --git a/Source/ASCollectionNode.mm b/Source/ASCollectionNode.mm index aee141987..c339e05de 100644 --- a/Source/ASCollectionNode.mm +++ b/Source/ASCollectionNode.mm @@ -967,6 +967,11 @@ - (nullable UICollectionViewCell *)cellForItemAtIndexPath:(NSIndexPath *)indexPa return [self.dataController.pendingMap contextForSection:section]; } +- (void)forceCheckForBatchFetching +{ + [self.view forceCheckForBatchFetching]; +} + #pragma mark - Editing - (void)registerSupplementaryNodeOfKind:(NSString *)elementKind diff --git a/Source/ASCollectionView.h b/Source/ASCollectionView.h index 42f74092f..dae8067e0 100644 --- a/Source/ASCollectionView.h +++ b/Source/ASCollectionView.h @@ -81,6 +81,11 @@ NS_ASSUME_NONNULL_BEGIN */ - (nullable id)contextForSection:(NSInteger)section AS_WARN_UNUSED_RESULT NS_SWIFT_UI_ACTOR; +/** + Force a check for batch fetching. Ignores if the user is scrolling. + */ +- (void)forceCheckForBatchFetching; + @end @interface ASCollectionView (Deprecated) diff --git a/Source/ASCollectionView.mm b/Source/ASCollectionView.mm index a190abe03..20ed5d218 100644 --- a/Source/ASCollectionView.mm +++ b/Source/ASCollectionView.mm @@ -1861,6 +1861,11 @@ - (void)_scheduleCheckForBatchFetchingForNumberOfChanges:(NSUInteger)changes }); } +- (void)forceCheckForBatchFetching +{ + [self _beginBatchFetchingIfNeededWithContentOffset:self.contentOffset velocity:CGPointZero]; +} + - (void)_checkForBatchFetching { // Dragging will be handled in scrollViewWillEndDragging:withVelocity:targetContentOffset: diff --git a/Source/TextExperiment/Component/ASTextLayout.mm b/Source/TextExperiment/Component/ASTextLayout.mm index fcf4d029c..c7c1d3a88 100644 --- a/Source/TextExperiment/Component/ASTextLayout.mm +++ b/Source/TextExperiment/Component/ASTextLayout.mm @@ -1597,17 +1597,17 @@ - (ASTextPosition *)closestPositionToPoint:(CGPoint)point { [self _insideComposedCharacterSequences:line position:position block: ^(CGFloat left, CGFloat right, NSUInteger prev, NSUInteger next) { if (isVertical) { - position = fabs(left - point.y) < fabs(right - point.y) < (right ? prev : next); + position = fabs(left - point.y) < fabs(right - point.y) ? prev : next; } else { - position = fabs(left - point.x) < fabs(right - point.x) < (right ? prev : next); + position = fabs(left - point.x) < fabs(right - point.x) ? prev : next; } }]; [self _insideEmoji:line position:position block: ^(CGFloat left, CGFloat right, NSUInteger prev, NSUInteger next) { if (isVertical) { - position = fabs(left - point.y) < fabs(right - point.y) < (right ? prev : next); + position = fabs(left - point.y) < fabs(right - point.y) ? prev : next; } else { - position = fabs(left - point.x) < fabs(right - point.x) < (right ? prev : next); + position = fabs(left - point.x) < fabs(right - point.x) ? prev : next; } }]; diff --git a/Tests/ASDisplayNodeTests.mm b/Tests/ASDisplayNodeTests.mm index 29d98d36e..290b83748 100644 --- a/Tests/ASDisplayNodeTests.mm +++ b/Tests/ASDisplayNodeTests.mm @@ -472,7 +472,7 @@ - (void)checkValuesMatchDefaults:(ASDisplayNode *)node isLayerBacked:(BOOL)isLay XCTAssertTrue(CGRectEqualToRect(CGRectZero, node.frame), @"default frame broken %@", hasLoadedView); XCTAssertTrue(CGPointEqualToPoint(CGPointZero, node.position), @"default position broken %@", hasLoadedView); XCTAssertEqual((CGFloat)0.0, node.zPosition, @"default zPosition broken %@", hasLoadedView); - XCTAssertEqual(node.isNodeLoaded && isLayerBacked ? 2.0f : 1.0f, node.contentsScale, @"default contentsScale broken %@", hasLoadedView); + XCTAssertEqual(node.isNodeLoaded && isLayerBacked ? 3.0f : 1.0f, node.contentsScale, @"default contentsScale broken %@", hasLoadedView); XCTAssertEqual([UIScreen mainScreen].scale, node.contentsScaleForDisplay, @"default contentsScaleForDisplay broken %@", hasLoadedView); XCTAssertTrue(CATransform3DEqualToTransform(CATransform3DIdentity, node.transform), @"default transform broken %@", hasLoadedView); XCTAssertTrue(CATransform3DEqualToTransform(CATransform3DIdentity, node.subnodeTransform), @"default subnodeTransform broken %@", hasLoadedView); @@ -2111,8 +2111,8 @@ - (void)testDebugDescription NSString *viewDescription = [parent.view valueForKey:@"recursiveDescription"]; // Make sure string contains a, b, and c's pointer string - XCTAssertTrue(stringContainsPointer(viewDescription, a), @"Layer backed node not present"); - XCTAssertTrue(stringContainsPointer(viewDescription, b), @"Layer-backed node not present"); + XCTAssertTrue(stringContainsPointer(viewDescription, a.layer), @"Layer backed node not present"); + XCTAssertTrue(stringContainsPointer(viewDescription, b.layer), @"Layer-backed node not present"); XCTAssertTrue(stringContainsPointer(viewDescription, c), @"View-backed node not present"); // Make sure layer names have display node in description diff --git a/Tests/ASStackLayoutSpecSnapshotTests.mm b/Tests/ASStackLayoutSpecSnapshotTests.mm index ac6a2a254..50ac287ee 100644 --- a/Tests/ASStackLayoutSpecSnapshotTests.mm +++ b/Tests/ASStackLayoutSpecSnapshotTests.mm @@ -1216,8 +1216,8 @@ - (void)testBaselineAlignmentWithStretchedItem - (void)testFlexWrapWithItemSpacings { ASStackLayoutSpecStyle style = { - .spacing = 50, .direction = ASStackLayoutDirectionHorizontal, + .spacing = 50, .flexWrap = ASStackLayoutFlexWrapWrap, .alignContent = ASStackLayoutAlignContentStart, .lineSpacing = 5, @@ -1246,8 +1246,8 @@ - (void)testFlexWrapWithItemSpacings - (void)testFlexWrapWithItemSpacingsBeingResetOnNewLines { ASStackLayoutSpecStyle style = { - .spacing = 5, .direction = ASStackLayoutDirectionHorizontal, + .spacing = 5, .flexWrap = ASStackLayoutFlexWrapWrap, .alignContent = ASStackLayoutAlignContentStart, .lineSpacing = 5, @@ -1327,9 +1327,9 @@ - (void)testAlignContentStretchAndOtherAlignments { ASStackLayoutSpecStyle style = { .direction = ASStackLayoutDirectionHorizontal, + .alignItems = ASStackLayoutAlignItemsStart, .flexWrap = ASStackLayoutFlexWrapWrap, .alignContent = ASStackLayoutAlignContentStretch, - .alignItems = ASStackLayoutAlignItemsStart, }; CGSize subnodeSize = {50, 50}; diff --git a/Tests/ASTableViewTests.mm b/Tests/ASTableViewTests.mm index a6160b121..f151ad62b 100644 --- a/Tests/ASTableViewTests.mm +++ b/Tests/ASTableViewTests.mm @@ -323,7 +323,8 @@ - (void)testConstrainedSizeForRowAtIndexPath NSIndexPath *indexPath = [NSIndexPath indexPathForRow:row inSection:section]; CGRect rect = [tableView rectForRowAtIndexPath:indexPath]; XCTAssertEqual(rect.size.width, 100); // specified width should be ignored for table - XCTAssertTrue(abs(rect.size.height - (42 + separatorHeight)) < FLT_EPSILON); + CGFloat threshold = 1e-5; + XCTAssertTrue(abs(rect.size.height - (42 + separatorHeight)) < threshold); } } } diff --git a/Tests/ASTextKitTests.mm b/Tests/ASTextKitTests.mm index 0f1a3ec72..61bf49acf 100644 --- a/Tests/ASTextKitTests.mm +++ b/Tests/ASTextKitTests.mm @@ -195,8 +195,8 @@ - (void)testRectsForRangeBeyondTruncationSizeReturnsNonZeroNumberOfRects [[ASTextKitRenderer alloc] initWithTextKitAttributes:{ .attributedString = attributedString, + .truncationAttributedString = [[NSAttributedString alloc] initWithString:@"... Continue Reading"], .maximumNumberOfLines = 1, - .truncationAttributedString = [[NSAttributedString alloc] initWithString:@"... Continue Reading"] } constrainedSize:{ 100, 100 }]; XCTAssert([renderer rectsForTextRange:NSMakeRange(0, attributedString.length) measureOption:ASTextKitRendererMeasureOptionBlock].count > 0); diff --git a/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testChildrenMeasuredWithAutoMaxSize@2x.png b/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testChildrenMeasuredWithAutoMaxSize@2x.png deleted file mode 100644 index 2b60cf2bc..000000000 Binary files a/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testChildrenMeasuredWithAutoMaxSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testChildrenMeasuredWithAutoMaxSize@3x.png b/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testChildrenMeasuredWithAutoMaxSize@3x.png new file mode 100644 index 000000000..0851ed8ed Binary files /dev/null and b/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testChildrenMeasuredWithAutoMaxSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_overflowChildren@2x.png b/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_overflowChildren@2x.png deleted file mode 100644 index 1687dc24f..000000000 Binary files a/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_overflowChildren@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_overflowChildren@3x.png b/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_overflowChildren@3x.png new file mode 100644 index 000000000..b9dfd1c9c Binary files /dev/null and b/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_overflowChildren@3x.png differ diff --git a/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_underflowChildren@2x.png b/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_underflowChildren@2x.png deleted file mode 100644 index 223381397..000000000 Binary files a/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_underflowChildren@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_underflowChildren@3x.png b/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_underflowChildren@3x.png new file mode 100644 index 000000000..28ee52372 Binary files /dev/null and b/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_underflowChildren@3x.png differ diff --git a/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_wrappedChildren@2x.png b/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_wrappedChildren@2x.png deleted file mode 100644 index 3d76853c0..000000000 Binary files a/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_wrappedChildren@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_wrappedChildren@3x.png b/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_wrappedChildren@3x.png new file mode 100644 index 000000000..49318708b Binary files /dev/null and b/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_wrappedChildren@3x.png differ diff --git a/Tests/ReferenceImages_64/ASBackgroundLayoutSpecSnapshotTests/testBackground@2x.png b/Tests/ReferenceImages_64/ASBackgroundLayoutSpecSnapshotTests/testBackground@2x.png deleted file mode 100644 index 198e5394c..000000000 Binary files a/Tests/ReferenceImages_64/ASBackgroundLayoutSpecSnapshotTests/testBackground@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASBackgroundLayoutSpecSnapshotTests/testBackground@3x.png b/Tests/ReferenceImages_64/ASBackgroundLayoutSpecSnapshotTests/testBackground@3x.png new file mode 100644 index 000000000..68401bc83 Binary files /dev/null and b/Tests/ReferenceImages_64/ASBackgroundLayoutSpecSnapshotTests/testBackground@3x.png differ diff --git a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testChangingTintColor@2x.png b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testChangingTintColor@2x.png deleted file mode 100644 index 974345783..000000000 Binary files a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testChangingTintColor@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testChangingTintColor@3x.png b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testChangingTintColor@3x.png new file mode 100644 index 000000000..87051ba67 Binary files /dev/null and b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testChangingTintColor@3x.png differ diff --git a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testChangingTintColor_modified_tint@2x.png b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testChangingTintColor_modified_tint@2x.png deleted file mode 100644 index 697a92cf5..000000000 Binary files a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testChangingTintColor_modified_tint@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testChangingTintColor_modified_tint@3x.png b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testChangingTintColor_modified_tint@3x.png new file mode 100644 index 000000000..34ff0bdb7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testChangingTintColor_modified_tint@3x.png differ diff --git a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColor@2x.png b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColor@2x.png deleted file mode 100644 index 974345783..000000000 Binary files a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColor@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColor@3x.png b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColor@3x.png new file mode 100644 index 000000000..87051ba67 Binary files /dev/null and b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColor@3x.png differ diff --git a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithForegroundColorSet@2x.png b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithForegroundColorSet@2x.png deleted file mode 100644 index 452a8e104..000000000 Binary files a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithForegroundColorSet@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithForegroundColorSet@3x.png b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithForegroundColorSet@3x.png new file mode 100644 index 000000000..8ce2d8f44 Binary files /dev/null and b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithForegroundColorSet@3x.png differ diff --git a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithInheritedTintColor_green_inherited_tint@2x.png b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithInheritedTintColor_green_inherited_tint@2x.png deleted file mode 100644 index 4cb86e74e..000000000 Binary files a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithInheritedTintColor_green_inherited_tint@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithInheritedTintColor_green_inherited_tint@3x.png b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithInheritedTintColor_green_inherited_tint@3x.png new file mode 100644 index 000000000..153e8ae59 Binary files /dev/null and b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithInheritedTintColor_green_inherited_tint@3x.png differ diff --git a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithInheritedTintColor_red_inherited_tint@2x.png b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithInheritedTintColor_red_inherited_tint@2x.png deleted file mode 100644 index 974345783..000000000 Binary files a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithInheritedTintColor_red_inherited_tint@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithInheritedTintColor_red_inherited_tint@3x.png b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithInheritedTintColor_red_inherited_tint@3x.png new file mode 100644 index 000000000..87051ba67 Binary files /dev/null and b/Tests/ReferenceImages_64/ASButtonNodeSnapshotTests/testTintColorWithInheritedTintColor_red_inherited_tint@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotCentering@2x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotCentering@2x.png deleted file mode 100644 index 02717f8fd..000000000 Binary files a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotCentering@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotCentering@3x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotCentering@3x.png new file mode 100644 index 000000000..ebc3d8fde Binary files /dev/null and b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotCentering@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions@2x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions@2x.png deleted file mode 100644 index 50cb613c2..000000000 Binary files a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions@3x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions@3x.png new file mode 100644 index 000000000..5a901db85 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringX@2x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringX@2x.png deleted file mode 100644 index 69e739238..000000000 Binary files a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringX@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringX@3x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringX@3x.png new file mode 100644 index 000000000..fcbd2ca6b Binary files /dev/null and b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringX@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringXCenteringY@2x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringXCenteringY@2x.png deleted file mode 100644 index 311ef9ed3..000000000 Binary files a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringXCenteringY@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringXCenteringY@3x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringXCenteringY@3x.png new file mode 100644 index 000000000..233eef951 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringXCenteringY@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringY@2x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringY@2x.png deleted file mode 100644 index 28036afad..000000000 Binary files a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringY@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringY@3x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringY@3x.png new file mode 100644 index 000000000..1b595b443 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringY@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions@2x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions@2x.png deleted file mode 100644 index 50cb613c2..000000000 Binary files a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions@3x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions@3x.png new file mode 100644 index 000000000..5a901db85 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumX@2x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumX@2x.png deleted file mode 100644 index 270b15feb..000000000 Binary files a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumX@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumX@3x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumX@3x.png new file mode 100644 index 000000000..46577da7d Binary files /dev/null and b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumX@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumXSizingMinimumY@2x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumXSizingMinimumY@2x.png deleted file mode 100644 index 7fddbff94..000000000 Binary files a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumXSizingMinimumY@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumXSizingMinimumY@3x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumXSizingMinimumY@3x.png new file mode 100644 index 000000000..c80669b5d Binary files /dev/null and b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumXSizingMinimumY@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumY@2x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumY@2x.png deleted file mode 100644 index b14c267b4..000000000 Binary files a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumY@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumY@3x.png b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumY@3x.png new file mode 100644 index 000000000..0f771e8fb Binary files /dev/null and b/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumY@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomLeft_inner_childSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomLeft_inner_childSize@2x.png deleted file mode 100644 index 3b78fb5e7..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomLeft_inner_childSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomLeft_inner_childSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomLeft_inner_childSize@3x.png new file mode 100644 index 000000000..3eb0d2e25 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomLeft_inner_childSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomLeft_inner_fullSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomLeft_inner_fullSize@2x.png deleted file mode 100644 index 3b78fb5e7..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomLeft_inner_fullSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomLeft_inner_fullSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomLeft_inner_fullSize@3x.png new file mode 100644 index 000000000..3eb0d2e25 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomLeft_inner_fullSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomRight_inner_childSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomRight_inner_childSize@2x.png deleted file mode 100644 index 34851067b..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomRight_inner_childSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomRight_inner_childSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomRight_inner_childSize@3x.png new file mode 100644 index 000000000..65badcb9e Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomRight_inner_childSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomRight_inner_fullSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomRight_inner_fullSize@2x.png deleted file mode 100644 index 34851067b..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomRight_inner_fullSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomRight_inner_fullSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomRight_inner_fullSize@3x.png new file mode 100644 index 000000000..65badcb9e Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_bottomRight_inner_fullSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topLeft_inner_childSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topLeft_inner_childSize@2x.png deleted file mode 100644 index aa4c3ee8d..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topLeft_inner_childSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topLeft_inner_childSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topLeft_inner_childSize@3x.png new file mode 100644 index 000000000..7c145b051 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topLeft_inner_childSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topLeft_inner_fullSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topLeft_inner_fullSize@2x.png deleted file mode 100644 index aa4c3ee8d..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topLeft_inner_fullSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topLeft_inner_fullSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topLeft_inner_fullSize@3x.png new file mode 100644 index 000000000..7c145b051 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topLeft_inner_fullSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topRight_inner_childSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topRight_inner_childSize@2x.png deleted file mode 100644 index 23082ede8..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topRight_inner_childSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topRight_inner_childSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topRight_inner_childSize@3x.png new file mode 100644 index 000000000..6096e7189 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topRight_inner_childSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topRight_inner_fullSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topRight_inner_fullSize@2x.png deleted file mode 100644 index 23082ede8..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topRight_inner_fullSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topRight_inner_fullSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topRight_inner_fullSize@3x.png new file mode 100644 index 000000000..6096e7189 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithInnerOffset_topRight_inner_fullSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomLeft_outer_childSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomLeft_outer_childSize@2x.png deleted file mode 100644 index 18e211ae8..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomLeft_outer_childSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomLeft_outer_childSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomLeft_outer_childSize@3x.png new file mode 100644 index 000000000..980d8ea31 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomLeft_outer_childSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomLeft_outer_fullSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomLeft_outer_fullSize@2x.png deleted file mode 100644 index 393143a21..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomLeft_outer_fullSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomLeft_outer_fullSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomLeft_outer_fullSize@3x.png new file mode 100644 index 000000000..856c987a1 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomLeft_outer_fullSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomRight_outer_childSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomRight_outer_childSize@2x.png deleted file mode 100644 index 18e211ae8..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomRight_outer_childSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomRight_outer_childSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomRight_outer_childSize@3x.png new file mode 100644 index 000000000..980d8ea31 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomRight_outer_childSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomRight_outer_fullSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomRight_outer_fullSize@2x.png deleted file mode 100644 index 12498681e..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomRight_outer_fullSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomRight_outer_fullSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomRight_outer_fullSize@3x.png new file mode 100644 index 000000000..713735b1f Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_bottomRight_outer_fullSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topLeft_outer_childSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topLeft_outer_childSize@2x.png deleted file mode 100644 index 18e211ae8..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topLeft_outer_childSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topLeft_outer_childSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topLeft_outer_childSize@3x.png new file mode 100644 index 000000000..980d8ea31 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topLeft_outer_childSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topLeft_outer_fullSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topLeft_outer_fullSize@2x.png deleted file mode 100644 index dc4f1ab2b..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topLeft_outer_fullSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topLeft_outer_fullSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topLeft_outer_fullSize@3x.png new file mode 100644 index 000000000..f8b3b75da Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topLeft_outer_fullSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topRight_outer_childSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topRight_outer_childSize@2x.png deleted file mode 100644 index 18e211ae8..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topRight_outer_childSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topRight_outer_childSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topRight_outer_childSize@3x.png new file mode 100644 index 000000000..980d8ea31 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topRight_outer_childSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topRight_outer_fullSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topRight_outer_fullSize@2x.png deleted file mode 100644 index fa7e15a55..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topRight_outer_fullSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topRight_outer_fullSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topRight_outer_fullSize@3x.png new file mode 100644 index 000000000..5c381b0e7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocationsWithOuterOffset_topRight_outer_fullSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomLeft_center_childSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomLeft_center_childSize@2x.png deleted file mode 100644 index 90f411aff..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomLeft_center_childSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomLeft_center_childSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomLeft_center_childSize@3x.png new file mode 100644 index 000000000..49bdc0ec9 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomLeft_center_childSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomLeft_center_fullSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomLeft_center_fullSize@2x.png deleted file mode 100644 index 6d49323c1..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomLeft_center_fullSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomLeft_center_fullSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomLeft_center_fullSize@3x.png new file mode 100644 index 000000000..4537d77eb Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomLeft_center_fullSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomRight_center_childSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomRight_center_childSize@2x.png deleted file mode 100644 index 9d23e2b64..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomRight_center_childSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomRight_center_childSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomRight_center_childSize@3x.png new file mode 100644 index 000000000..fb255c19f Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomRight_center_childSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomRight_center_fullSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomRight_center_fullSize@2x.png deleted file mode 100644 index 58257ffef..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomRight_center_fullSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomRight_center_fullSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomRight_center_fullSize@3x.png new file mode 100644 index 000000000..9a2c6fd27 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_bottomRight_center_fullSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topLeft_center_childSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topLeft_center_childSize@2x.png deleted file mode 100644 index 3503fd79d..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topLeft_center_childSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topLeft_center_childSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topLeft_center_childSize@3x.png new file mode 100644 index 000000000..e229cdf4f Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topLeft_center_childSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topLeft_center_fullSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topLeft_center_fullSize@2x.png deleted file mode 100644 index 263f50d29..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topLeft_center_fullSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topLeft_center_fullSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topLeft_center_fullSize@3x.png new file mode 100644 index 000000000..e103b89d6 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topLeft_center_fullSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topRight_center_childSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topRight_center_childSize@2x.png deleted file mode 100644 index 492fc049b..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topRight_center_childSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topRight_center_childSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topRight_center_childSize@3x.png new file mode 100644 index 000000000..a151e0951 Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topRight_center_childSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topRight_center_fullSize@2x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topRight_center_fullSize@2x.png deleted file mode 100644 index 9e39a3c5c..000000000 Binary files a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topRight_center_fullSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topRight_center_fullSize@3x.png b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topRight_center_fullSize@3x.png new file mode 100644 index 000000000..55fa8c1bb Binary files /dev/null and b/Tests/ReferenceImages_64/ASCornerLayoutSpecSnapshotTests/testCornerSpecForAllLocations_topRight_center_fullSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColorLayerBacked_dark@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColorLayerBacked_dark@2x.png deleted file mode 100644 index 2516cc86c..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColorLayerBacked_dark@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColorLayerBacked_dark@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColorLayerBacked_dark@3x.png new file mode 100644 index 000000000..0bce4e68f Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColorLayerBacked_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColorLayerBacked_light@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColorLayerBacked_light@2x.png deleted file mode 100644 index ca7d38e43..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColorLayerBacked_light@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColorLayerBacked_light@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColorLayerBacked_light@3x.png new file mode 100644 index 000000000..84ee3b948 Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColorLayerBacked_light@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColor_dark@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColor_dark@2x.png deleted file mode 100644 index 2516cc86c..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColor_dark@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColor_dark@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColor_dark@3x.png new file mode 100644 index 000000000..0bce4e68f Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColor_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColor_light@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColor_light@2x.png deleted file mode 100644 index ca7d38e43..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColor_light@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColor_light@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColor_light@3x.png new file mode 100644 index 000000000..84ee3b948 Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBackgroundDynamicColor_light@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBasicHierarchySnapshotTesting@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBasicHierarchySnapshotTesting@2x.png deleted file mode 100644 index e5f40f70f..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBasicHierarchySnapshotTesting@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBasicHierarchySnapshotTesting@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBasicHierarchySnapshotTesting@3x.png new file mode 100644 index 000000000..af60a189c Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBasicHierarchySnapshotTesting@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding@2x.png deleted file mode 100644 index aa72ff691..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_15@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_15@2x.png deleted file mode 100644 index 187993d04..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_15@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_15_dark@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_15_dark@2x.png deleted file mode 100644 index 3939eff5e..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_15_dark@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_15_dark@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_15_dark@3x.png new file mode 100644 index 000000000..962839ba7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_15_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_15_light@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_15_light@2x.png deleted file mode 100644 index 156f97629..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_15_light@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_15_light@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_15_light@3x.png new file mode 100644 index 000000000..5a987093d Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_15_light@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_1@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_1@2x.png deleted file mode 100644 index aa72ff691..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_1@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_1_dark@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_1_dark@2x.png deleted file mode 100644 index 1c3b01ba7..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_1_dark@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_1_dark@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_1_dark@3x.png new file mode 100644 index 000000000..360cbb0fb Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_1_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_1_light@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_1_light@2x.png deleted file mode 100644 index 7afab0531..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_1_light@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_1_light@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_1_light@3x.png new file mode 100644 index 000000000..a30205bef Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_1_light@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_3@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_3@2x.png deleted file mode 100644 index 17604b6ac..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_3@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_3_dark@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_3_dark@2x.png deleted file mode 100644 index ecbd06893..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_3_dark@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_3_dark@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_3_dark@3x.png new file mode 100644 index 000000000..7adbe4bf9 Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_3_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_3_light@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_3_light@2x.png deleted file mode 100644 index b75ac65bf..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_3_light@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_3_light@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_3_light@3x.png new file mode 100644 index 000000000..ff25abad6 Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_3_light@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_7@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_7@2x.png deleted file mode 100644 index 45d842d09..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_7@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_7_dark@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_7_dark@2x.png deleted file mode 100644 index b41f6ebc7..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_7_dark@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_7_dark@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_7_dark@3x.png new file mode 100644 index 000000000..07de38dc0 Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_7_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_7_light@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_7_light@2x.png deleted file mode 100644 index 753c3604c..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_7_light@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_7_light@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_7_light@3x.png new file mode 100644 index 000000000..6cf057f63 Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testClippingCornerRounding_7_light@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding@2x.png deleted file mode 100644 index 0b4a6b425..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_15@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_15@2x.png deleted file mode 100644 index a5993c48e..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_15@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_15@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_15@3x.png new file mode 100644 index 000000000..522ac4b4d Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_15@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_1@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_1@2x.png deleted file mode 100644 index 581279f1f..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_1@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_1@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_1@3x.png new file mode 100644 index 000000000..c92c6640d Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_1@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_3@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_3@2x.png deleted file mode 100644 index 511430936..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_3@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_3@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_3@3x.png new file mode 100644 index 000000000..950aa54b1 Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_3@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_7@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_7@2x.png deleted file mode 100644 index b95e87c30..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_7@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_7@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_7@3x.png new file mode 100644 index 000000000..78a31c13e Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testPrecompositedCornerRounding_7@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_dark@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_dark@2x.png deleted file mode 100644 index 183c55b64..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_dark@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_dark@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_dark@3x.png new file mode 100644 index 000000000..3d2f47924 Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_light@2x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_light@2x.png deleted file mode 100644 index fa5755657..000000000 Binary files a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_light@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_light@3x.png b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_light@3x.png new file mode 100644 index 000000000..6a38984c3 Binary files /dev/null and b/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_light@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicAssetImage_user_interface_style_dark@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicAssetImage_user_interface_style_dark@2x.png deleted file mode 100644 index 48f278402..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicAssetImage_user_interface_style_dark@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicAssetImage_user_interface_style_dark@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicAssetImage_user_interface_style_dark@3x.png new file mode 100644 index 000000000..8c4e3dab5 Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicAssetImage_user_interface_style_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicAssetImage_user_interface_style_light@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicAssetImage_user_interface_style_light@2x.png deleted file mode 100644 index 08f8a200e..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicAssetImage_user_interface_style_light@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicAssetImage_user_interface_style_light@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicAssetImage_user_interface_style_light@3x.png new file mode 100644 index 000000000..7ec157c92 Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicAssetImage_user_interface_style_light@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicTintColor_user_interface_style_dark@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicTintColor_user_interface_style_dark@2x.png deleted file mode 100644 index 183c55b64..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicTintColor_user_interface_style_dark@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicTintColor_user_interface_style_dark@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicTintColor_user_interface_style_dark@3x.png new file mode 100644 index 000000000..3d2f47924 Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicTintColor_user_interface_style_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicTintColor_user_interface_style_light@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicTintColor_user_interface_style_light@2x.png deleted file mode 100644 index fa5755657..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicTintColor_user_interface_style_light@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicTintColor_user_interface_style_light@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicTintColor_user_interface_style_light@3x.png new file mode 100644 index 000000000..6a38984c3 Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testDynamicTintColor_user_interface_style_light@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_first@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_first@2x.png deleted file mode 100644 index d593e113a..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_first@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_first@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_first@3x.png new file mode 100644 index 000000000..648bea367 Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_first@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_second@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_second@2x.png deleted file mode 100644 index f85d1a9f0..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_second@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_second@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_second@3x.png new file mode 100644 index 000000000..6c2e59878 Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_second@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRenderLogoSquare@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRenderLogoSquare@2x.png deleted file mode 100644 index d593e113a..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRenderLogoSquare@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRenderLogoSquare@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRenderLogoSquare@3x.png new file mode 100644 index 000000000..648bea367 Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRenderLogoSquare@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRoundedCornerBlock@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRoundedCornerBlock@2x.png deleted file mode 100644 index b4c17dd80..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRoundedCornerBlock@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRoundedCornerBlock@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRoundedCornerBlock@3x.png new file mode 100644 index 000000000..0f9271f7a Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRoundedCornerBlock@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorBlock@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorBlock@2x.png deleted file mode 100644 index 77cf9afb6..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorBlock@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorBlock@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorBlock@3x.png new file mode 100644 index 000000000..c70d29952 Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorBlock@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorInheritsFromSupernodeLayerBacked@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorInheritsFromSupernodeLayerBacked@2x.png deleted file mode 100644 index 1d1b9d95b..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorInheritsFromSupernodeLayerBacked@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorInheritsFromSupernodeLayerBacked@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorInheritsFromSupernodeLayerBacked@3x.png new file mode 100644 index 000000000..9ee205a6d Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorInheritsFromSupernodeLayerBacked@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorInheritsFromSupernodeViewBacked@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorInheritsFromSupernodeViewBacked@2x.png deleted file mode 100644 index 1d1b9d95b..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorInheritsFromSupernodeViewBacked@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorInheritsFromSupernodeViewBacked@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorInheritsFromSupernodeViewBacked@3x.png new file mode 100644 index 000000000..9ee205a6d Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorInheritsFromSupernodeViewBacked@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnGrayscaleNodePropertyAlwaysTemplate_blue_tint@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnGrayscaleNodePropertyAlwaysTemplate_blue_tint@2x.png deleted file mode 100644 index 2a1cc4685..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnGrayscaleNodePropertyAlwaysTemplate_blue_tint@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnGrayscaleNodePropertyAlwaysTemplate_blue_tint@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnGrayscaleNodePropertyAlwaysTemplate_blue_tint@3x.png new file mode 100644 index 000000000..ff950395e Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnGrayscaleNodePropertyAlwaysTemplate_blue_tint@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnGrayscaleNodePropertyAlwaysTemplate_red_tint@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnGrayscaleNodePropertyAlwaysTemplate_red_tint@2x.png deleted file mode 100644 index 1d1b9d95b..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnGrayscaleNodePropertyAlwaysTemplate_red_tint@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnGrayscaleNodePropertyAlwaysTemplate_red_tint@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnGrayscaleNodePropertyAlwaysTemplate_red_tint@3x.png new file mode 100644 index 000000000..9ee205a6d Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnGrayscaleNodePropertyAlwaysTemplate_red_tint@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysOriginal@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysOriginal@2x.png deleted file mode 100644 index 3b19513ef..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysOriginal@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysOriginal@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysOriginal@3x.png new file mode 100644 index 000000000..a7bb26036 Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysOriginal@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplateLayerBackedNode@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplateLayerBackedNode@2x.png deleted file mode 100644 index 1d1b9d95b..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplateLayerBackedNode@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplateLayerBackedNode@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplateLayerBackedNode@3x.png new file mode 100644 index 000000000..9ee205a6d Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplateLayerBackedNode@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplate_blue_tint@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplate_blue_tint@2x.png deleted file mode 100644 index 2a1cc4685..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplate_blue_tint@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplate_blue_tint@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplate_blue_tint@3x.png new file mode 100644 index 000000000..ff950395e Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplate_blue_tint@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplate_red_tint@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplate_red_tint@2x.png deleted file mode 100644 index 1d1b9d95b..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplate_red_tint@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplate_red_tint@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplate_red_tint@3x.png new file mode 100644 index 000000000..9ee205a6d Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAlwaysTemplate_red_tint@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAutomatic@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAutomatic@2x.png deleted file mode 100644 index 3b19513ef..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAutomatic@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAutomatic@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAutomatic@3x.png new file mode 100644 index 000000000..a7bb26036 Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorOnNodePropertyAutomatic@3x.png differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testUIGraphicsRendererDrawingExperiment@2x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testUIGraphicsRendererDrawingExperiment@2x.png deleted file mode 100644 index d593e113a..000000000 Binary files a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testUIGraphicsRendererDrawingExperiment@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testUIGraphicsRendererDrawingExperiment@3x.png b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testUIGraphicsRendererDrawingExperiment@3x.png new file mode 100644 index 000000000..648bea367 Binary files /dev/null and b/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testUIGraphicsRendererDrawingExperiment@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_10_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_10_10@2x.png deleted file mode 100644 index ec0a4cf3c..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_10_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_10_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_10_10@3x.png new file mode 100644 index 000000000..8e6cf560a Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_10_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_10_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_10_inf@2x.png deleted file mode 100644 index fb4775c0f..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_10_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_10_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_10_inf@3x.png new file mode 100644 index 000000000..261943244 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_10_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_inf_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_inf_10@2x.png deleted file mode 100644 index 993d4c059..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_inf_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_inf_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_inf_10@3x.png new file mode 100644 index 000000000..300955113 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_inf_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_inf_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_inf_inf@2x.png deleted file mode 100644 index d0b2cbd91..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_inf_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_inf_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_inf_inf@3x.png new file mode 100644 index 000000000..423a747ee Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_10_inf_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_10_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_10_10@2x.png deleted file mode 100644 index 537326b3d..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_10_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_10_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_10_10@3x.png new file mode 100644 index 000000000..66fd8e261 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_10_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_10_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_10_inf@2x.png deleted file mode 100644 index b38c9ccb1..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_10_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_10_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_10_inf@3x.png new file mode 100644 index 000000000..a5cfac6ef Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_10_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_inf_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_inf_10@2x.png deleted file mode 100644 index 797e7ac41..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_inf_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_inf_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_inf_10@3x.png new file mode 100644 index 000000000..03a0b97d4 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_inf_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_inf_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_inf_inf@2x.png deleted file mode 100644 index 8c8814938..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_inf_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_inf_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_inf_inf@3x.png new file mode 100644 index 000000000..779427964 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10_inf_inf_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_10_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_10_10@2x.png deleted file mode 100644 index f9decf028..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_10_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_10_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_10_10@3x.png new file mode 100644 index 000000000..ac9367581 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_10_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_10_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_10_inf@2x.png deleted file mode 100644 index e3efdda0a..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_10_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_10_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_10_inf@3x.png new file mode 100644 index 000000000..54e0aead7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_10_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_inf_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_inf_10@2x.png deleted file mode 100644 index f494863bc..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_inf_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_inf_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_inf_10@3x.png new file mode 100644 index 000000000..5452be3aa Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_inf_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_inf_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_inf_inf@2x.png deleted file mode 100644 index 5653f7f6f..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_inf_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_inf_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_inf_inf@3x.png new file mode 100644 index 000000000..aaac39f98 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_10_inf_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_10_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_10_10@2x.png deleted file mode 100644 index 5fa79d8a9..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_10_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_10_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_10_10@3x.png new file mode 100644 index 000000000..e8221627f Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_10_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_10_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_10_inf@2x.png deleted file mode 100644 index bece9190a..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_10_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_10_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_10_inf@3x.png new file mode 100644 index 000000000..8d8c1e51b Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_10_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_inf_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_inf_10@2x.png deleted file mode 100644 index e8132c50b..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_inf_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_inf_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_inf_10@3x.png new file mode 100644 index 000000000..43d8e9fd7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_inf_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_inf_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_inf_inf@2x.png deleted file mode 100644 index 6da1b998c..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_inf_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_inf_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_inf_inf@3x.png new file mode 100644 index 000000000..15cf0c548 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf_inf_inf_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_0_0@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_0_0@2x.png deleted file mode 100644 index 5104ab98b..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_0_0@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_0_0@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_0_0@3x.png new file mode 100644 index 000000000..d47492609 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_0_0@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_0_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_0_inf@2x.png deleted file mode 100644 index 8ac22fa36..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_0_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_0_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_0_inf@3x.png new file mode 100644 index 000000000..9c52ef6fa Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_0_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_inf_0@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_inf_0@2x.png deleted file mode 100644 index 2054fac7e..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_inf_0@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_inf_0@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_inf_0@3x.png new file mode 100644 index 000000000..0ec66fe87 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_inf_0@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_inf_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_inf_inf@2x.png deleted file mode 100644 index d09eb720c..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_inf_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_inf_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_inf_inf@3x.png new file mode 100644 index 000000000..7cee3b2f6 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_0_inf_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_0_0@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_0_0@2x.png deleted file mode 100644 index 8fe02d548..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_0_0@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_0_0@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_0_0@3x.png new file mode 100644 index 000000000..e2a13603b Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_0_0@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_0_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_0_inf@2x.png deleted file mode 100644 index 21f8ad616..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_0_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_0_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_0_inf@3x.png new file mode 100644 index 000000000..3b9b71667 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_0_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_inf_0@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_inf_0@2x.png deleted file mode 100644 index a77ce6a0c..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_inf_0@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_inf_0@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_inf_0@3x.png new file mode 100644 index 000000000..37452c64e Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_inf_0@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_inf_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_inf_inf@2x.png deleted file mode 100644 index c4e179176..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_inf_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_inf_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_inf_inf@3x.png new file mode 100644 index 000000000..2b0b813f3 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0_inf_inf_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_0_0@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_0_0@2x.png deleted file mode 100644 index 19f457874..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_0_0@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_0_0@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_0_0@3x.png new file mode 100644 index 000000000..d568595e2 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_0_0@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_0_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_0_inf@2x.png deleted file mode 100644 index 81a07b257..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_0_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_0_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_0_inf@3x.png new file mode 100644 index 000000000..0df7ab124 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_0_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_inf_0@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_inf_0@2x.png deleted file mode 100644 index 31422ea5d..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_inf_0@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_inf_0@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_inf_0@3x.png new file mode 100644 index 000000000..70242410f Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_inf_0@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_inf_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_inf_inf@2x.png deleted file mode 100644 index 63cff77a6..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_inf_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_inf_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_inf_inf@3x.png new file mode 100644 index 000000000..838652c02 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_0_inf_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_0_0@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_0_0@2x.png deleted file mode 100644 index 1c55fe57e..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_0_0@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_0_0@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_0_0@3x.png new file mode 100644 index 000000000..f5621b59d Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_0_0@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_0_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_0_inf@2x.png deleted file mode 100644 index 5d0bfee89..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_0_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_0_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_0_inf@3x.png new file mode 100644 index 000000000..94606a716 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_0_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_inf_0@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_inf_0@2x.png deleted file mode 100644 index 2b6430c5b..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_inf_0@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_inf_0@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_inf_0@3x.png new file mode 100644 index 000000000..a58846097 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_inf_0@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_inf_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_inf_inf@2x.png deleted file mode 100644 index 6da1b998c..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_inf_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_inf_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_inf_inf@3x.png new file mode 100644 index 000000000..15cf0c548 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf_inf_inf_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_10_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_10_10@2x.png deleted file mode 100644 index c9255d62e..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_10_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_10_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_10_10@3x.png new file mode 100644 index 000000000..8ee03e8a3 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_10_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_10_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_10_inf@2x.png deleted file mode 100644 index db6249947..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_10_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_10_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_10_inf@3x.png new file mode 100644 index 000000000..51ca7bfe8 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_10_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_inf_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_inf_10@2x.png deleted file mode 100644 index 2b052c4e3..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_inf_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_inf_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_inf_10@3x.png new file mode 100644 index 000000000..2203726e8 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_inf_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_inf_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_inf_inf@2x.png deleted file mode 100644 index d0b2cbd91..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_inf_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_inf_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_inf_inf@3x.png new file mode 100644 index 000000000..423a747ee Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_10_inf_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_10_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_10_10@2x.png deleted file mode 100644 index 69368ee67..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_10_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_10_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_10_10@3x.png new file mode 100644 index 000000000..bdeeb06b8 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_10_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_10_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_10_inf@2x.png deleted file mode 100644 index 55efcf5db..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_10_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_10_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_10_inf@3x.png new file mode 100644 index 000000000..648581796 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_10_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_inf_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_inf_10@2x.png deleted file mode 100644 index 797e7ac41..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_inf_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_inf_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_inf_10@3x.png new file mode 100644 index 000000000..03a0b97d4 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_inf_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_inf_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_inf_inf@2x.png deleted file mode 100644 index 8c8814938..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_inf_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_inf_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_inf_inf@3x.png new file mode 100644 index 000000000..779427964 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10_inf_inf_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_10_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_10_10@2x.png deleted file mode 100644 index 01411e3f2..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_10_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_10_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_10_10@3x.png new file mode 100644 index 000000000..54b00deb5 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_10_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_10_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_10_inf@2x.png deleted file mode 100644 index e3efdda0a..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_10_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_10_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_10_inf@3x.png new file mode 100644 index 000000000..54e0aead7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_10_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_inf_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_inf_10@2x.png deleted file mode 100644 index f0cd23562..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_inf_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_inf_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_inf_10@3x.png new file mode 100644 index 000000000..e1dea8d7e Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_inf_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_inf_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_inf_inf@2x.png deleted file mode 100644 index 5653f7f6f..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_inf_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_inf_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_inf_inf@3x.png new file mode 100644 index 000000000..aaac39f98 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_10_inf_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_10_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_10_10@2x.png deleted file mode 100644 index 5fa79d8a9..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_10_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_10_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_10_10@3x.png new file mode 100644 index 000000000..e8221627f Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_10_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_10_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_10_inf@2x.png deleted file mode 100644 index bece9190a..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_10_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_10_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_10_inf@3x.png new file mode 100644 index 000000000..8d8c1e51b Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_10_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_inf_10@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_inf_10@2x.png deleted file mode 100644 index e8132c50b..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_inf_10@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_inf_10@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_inf_10@3x.png new file mode 100644 index 000000000..43d8e9fd7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_inf_10@3x.png differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_inf_inf@2x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_inf_inf@2x.png deleted file mode 100644 index 6da1b998c..000000000 Binary files a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_inf_inf@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_inf_inf@3x.png b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_inf_inf@3x.png new file mode 100644 index 000000000..15cf0c548 Binary files /dev/null and b/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf_inf_inf_inf@3x.png differ diff --git a/Tests/ReferenceImages_64/ASOverlayLayoutSpecSnapshotTests/testOverlay@2x.png b/Tests/ReferenceImages_64/ASOverlayLayoutSpecSnapshotTests/testOverlay@2x.png deleted file mode 100644 index 198e5394c..000000000 Binary files a/Tests/ReferenceImages_64/ASOverlayLayoutSpecSnapshotTests/testOverlay@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASOverlayLayoutSpecSnapshotTests/testOverlay@3x.png b/Tests/ReferenceImages_64/ASOverlayLayoutSpecSnapshotTests/testOverlay@3x.png new file mode 100644 index 000000000..68401bc83 Binary files /dev/null and b/Tests/ReferenceImages_64/ASOverlayLayoutSpecSnapshotTests/testOverlay@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_DoubleRatio@2x.png b/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_DoubleRatio@2x.png deleted file mode 100644 index a10ef9697..000000000 Binary files a/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_DoubleRatio@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_DoubleRatio@3x.png b/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_DoubleRatio@3x.png new file mode 100644 index 000000000..8db3f4af5 Binary files /dev/null and b/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_DoubleRatio@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_HalfRatio@2x.png b/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_HalfRatio@2x.png deleted file mode 100644 index 0cbc83139..000000000 Binary files a/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_HalfRatio@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_HalfRatio@3x.png b/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_HalfRatio@3x.png new file mode 100644 index 000000000..ce818533d Binary files /dev/null and b/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_HalfRatio@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_SevenTimesRatio@2x.png b/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_SevenTimesRatio@2x.png deleted file mode 100644 index 48be1e63a..000000000 Binary files a/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_SevenTimesRatio@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_SevenTimesRatio@3x.png b/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_SevenTimesRatio@3x.png new file mode 100644 index 000000000..bb3237af7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_SevenTimesRatio@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_TenTimesRatioWithItemTooBig@2x.png b/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_TenTimesRatioWithItemTooBig@2x.png deleted file mode 100644 index ce593f7ad..000000000 Binary files a/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_TenTimesRatioWithItemTooBig@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_TenTimesRatioWithItemTooBig@3x.png b/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_TenTimesRatioWithItemTooBig@3x.png new file mode 100644 index 000000000..24382dc7c Binary files /dev/null and b/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_TenTimesRatioWithItemTooBig@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotPositioning@2x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotPositioning@2x.png deleted file mode 100644 index 02717f8fd..000000000 Binary files a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotPositioning@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotPositioning@3x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotPositioning@3x.png new file mode 100644 index 000000000..ebc3d8fde Binary files /dev/null and b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotPositioning@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions@2x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions@2x.png deleted file mode 100644 index 1192d72e8..000000000 Binary files a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions@3x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions@3x.png new file mode 100644 index 000000000..734e78d97 Binary files /dev/null and b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterX@2x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterX@2x.png deleted file mode 100644 index e2c7e8266..000000000 Binary files a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterX@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterX@3x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterX@3x.png new file mode 100644 index 000000000..fc17ee781 Binary files /dev/null and b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterX@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXCenterY@2x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXCenterY@2x.png deleted file mode 100644 index 311ef9ed3..000000000 Binary files a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXCenterY@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXCenterY@3x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXCenterY@3x.png new file mode 100644 index 000000000..233eef951 Binary files /dev/null and b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXCenterY@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXEndY@2x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXEndY@2x.png deleted file mode 100644 index 385fc3e81..000000000 Binary files a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXEndY@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXEndY@3x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXEndY@3x.png new file mode 100644 index 000000000..47adbdb26 Binary files /dev/null and b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXEndY@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterY@2x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterY@2x.png deleted file mode 100644 index 94db1b131..000000000 Binary files a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterY@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterY@3x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterY@3x.png new file mode 100644 index 000000000..def235d3d Binary files /dev/null and b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterY@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndX@2x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndX@2x.png deleted file mode 100644 index e46461957..000000000 Binary files a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndX@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndX@3x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndX@3x.png new file mode 100644 index 000000000..e5f421e5c Binary files /dev/null and b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndX@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXCenterY@2x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXCenterY@2x.png deleted file mode 100644 index 04ee2d611..000000000 Binary files a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXCenterY@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXCenterY@3x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXCenterY@3x.png new file mode 100644 index 000000000..8408641ca Binary files /dev/null and b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXCenterY@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXEndY@2x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXEndY@2x.png deleted file mode 100644 index 3d9d16b5d..000000000 Binary files a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXEndY@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXEndY@3x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXEndY@3x.png new file mode 100644 index 000000000..1e2cece4a Binary files /dev/null and b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXEndY@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndY@2x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndY@2x.png deleted file mode 100644 index 8ba7270db..000000000 Binary files a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndY@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndY@3x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndY@3x.png new file mode 100644 index 000000000..692a18880 Binary files /dev/null and b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndY@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions@2x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions@2x.png deleted file mode 100644 index 1192d72e8..000000000 Binary files a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions@3x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions@3x.png new file mode 100644 index 000000000..734e78d97 Binary files /dev/null and b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumHeight@2x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumHeight@2x.png deleted file mode 100644 index 467bb6fa8..000000000 Binary files a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumHeight@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumHeight@3x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumHeight@3x.png new file mode 100644 index 000000000..fc2c5a267 Binary files /dev/null and b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumHeight@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidth@2x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidth@2x.png deleted file mode 100644 index 8e9c66caa..000000000 Binary files a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidth@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidth@3x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidth@3x.png new file mode 100644 index 000000000..174113dc8 Binary files /dev/null and b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidth@3x.png differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidthSizingMinimumHeight@2x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidthSizingMinimumHeight@2x.png deleted file mode 100644 index ddafb41db..000000000 Binary files a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidthSizingMinimumHeight@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidthSizingMinimumHeight@3x.png b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidthSizingMinimumHeight@3x.png new file mode 100644 index 000000000..8ab5498f7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidthSizingMinimumHeight@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithFlexedMainDimension@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithFlexedMainDimension@2x.png deleted file mode 100644 index ea22b081a..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithFlexedMainDimension@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithFlexedMainDimension@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithFlexedMainDimension@3x.png new file mode 100644 index 000000000..1b7c108c2 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithFlexedMainDimension@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithIndefiniteCrossDimension@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithIndefiniteCrossDimension@2x.png deleted file mode 100644 index 00b3bfb36..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithIndefiniteCrossDimension@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithIndefiniteCrossDimension@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithIndefiniteCrossDimension@3x.png new file mode 100644 index 000000000..258d9cbc0 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithIndefiniteCrossDimension@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentCenter@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentCenter@2x.png deleted file mode 100644 index 188cd6007..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentCenter@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentCenter@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentCenter@3x.png new file mode 100644 index 000000000..051bd0ec7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentCenter@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentEnd@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentEnd@2x.png deleted file mode 100644 index 18f614cf4..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentEnd@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentEnd@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentEnd@3x.png new file mode 100644 index 000000000..fd37e7ede Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentEnd@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentSpaceAround@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentSpaceAround@2x.png deleted file mode 100644 index 188cd6007..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentSpaceAround@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentSpaceAround@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentSpaceAround@3x.png new file mode 100644 index 000000000..051bd0ec7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentSpaceAround@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentSpaceBetween@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentSpaceBetween@2x.png deleted file mode 100644 index 20d303b58..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentSpaceBetween@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentSpaceBetween@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentSpaceBetween@3x.png new file mode 100644 index 000000000..71ce3d2f5 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentSpaceBetween@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentStart@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentStart@2x.png deleted file mode 100644 index 20d303b58..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentStart@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentStart@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentStart@3x.png new file mode 100644 index 000000000..71ce3d2f5 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingOverflow_alignContentStart@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentCenter@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentCenter@2x.png deleted file mode 100644 index 27b26426d..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentCenter@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentCenter@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentCenter@3x.png new file mode 100644 index 000000000..6e271530b Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentCenter@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentEnd@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentEnd@2x.png deleted file mode 100644 index 740100fce..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentEnd@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentEnd@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentEnd@3x.png new file mode 100644 index 000000000..e8f4f77df Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentEnd@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentSpaceAround@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentSpaceAround@2x.png deleted file mode 100644 index 40bae9ef3..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentSpaceAround@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentSpaceAround@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentSpaceAround@3x.png new file mode 100644 index 000000000..3a08ff120 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentSpaceAround@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentSpaceBetween@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentSpaceBetween@2x.png deleted file mode 100644 index a60f63f14..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentSpaceBetween@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentSpaceBetween@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentSpaceBetween@3x.png new file mode 100644 index 000000000..7092b72b7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentSpaceBetween@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentStart@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentStart@2x.png deleted file mode 100644 index a89a941bf..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentStart@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentStart@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentStart@3x.png new file mode 100644 index 000000000..dcf708bb4 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentStart@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentStretch@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentStretch@2x.png deleted file mode 100644 index 461c78692..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentStretch@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentStretch@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentStretch@3x.png new file mode 100644 index 000000000..112ee6a17 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentAndLineSpacingUnderflow_alignContentStretch@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentCenter@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentCenter@2x.png deleted file mode 100644 index 032e9fac3..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentCenter@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentCenter@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentCenter@3x.png new file mode 100644 index 000000000..a83d90268 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentCenter@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentEnd@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentEnd@2x.png deleted file mode 100644 index 6d08d18e4..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentEnd@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentEnd@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentEnd@3x.png new file mode 100644 index 000000000..6c4fdd290 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentEnd@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceAround@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceAround@2x.png deleted file mode 100644 index 032e9fac3..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceAround@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceAround@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceAround@3x.png new file mode 100644 index 000000000..a83d90268 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceAround@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceBetween@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceBetween@2x.png deleted file mode 100644 index 4df2a8118..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceBetween@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceBetween@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceBetween@3x.png new file mode 100644 index 000000000..1e9565787 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceBetween@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentStart@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentStart@2x.png deleted file mode 100644 index 4df2a8118..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentStart@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentStart@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentStart@3x.png new file mode 100644 index 000000000..1e9565787 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentStart@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentStretchAndOtherAlignments@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentStretchAndOtherAlignments@2x.png deleted file mode 100644 index 51d060062..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentStretchAndOtherAlignments@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentStretchAndOtherAlignments@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentStretchAndOtherAlignments@3x.png new file mode 100644 index 000000000..c2a361828 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentStretchAndOtherAlignments@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentCenter@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentCenter@2x.png deleted file mode 100644 index fea7203a2..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentCenter@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentCenter@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentCenter@3x.png new file mode 100644 index 000000000..838d3cc05 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentCenter@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentEnd@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentEnd@2x.png deleted file mode 100644 index 9e0bdad42..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentEnd@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentEnd@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentEnd@3x.png new file mode 100644 index 000000000..1d6eb7eae Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentEnd@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceAround@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceAround@2x.png deleted file mode 100644 index bb608622f..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceAround@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceAround@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceAround@3x.png new file mode 100644 index 000000000..443f6cd2c Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceAround@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceBetween@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceBetween@2x.png deleted file mode 100644 index 17b8dbfbc..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceBetween@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceBetween@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceBetween@3x.png new file mode 100644 index 000000000..22f8895b5 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceBetween@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStart@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStart@2x.png deleted file mode 100644 index ab969dd63..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStart@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStart@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStart@3x.png new file mode 100644 index 000000000..ecc2d9f2a Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStart@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStretch@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStretch@2x.png deleted file mode 100644 index 584aca77d..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStretch@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStretch@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStretch@3x.png new file mode 100644 index 000000000..0beab983e Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStretch@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentWithUnconstrainedCrossSize@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentWithUnconstrainedCrossSize@2x.png deleted file mode 100644 index 12936781c..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentWithUnconstrainedCrossSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentWithUnconstrainedCrossSize@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentWithUnconstrainedCrossSize@3x.png new file mode 100644 index 000000000..0875bda08 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentWithUnconstrainedCrossSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedCenter@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedCenter@2x.png deleted file mode 100644 index 46b73e6a6..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedCenter@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedCenter@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedCenter@3x.png new file mode 100644 index 000000000..17b58f664 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedCenter@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedEnd@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedEnd@2x.png deleted file mode 100644 index d2131dd83..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedEnd@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedEnd@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedEnd@3x.png new file mode 100644 index 000000000..2534ca0b6 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedEnd@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStart@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStart@2x.png deleted file mode 100644 index 5f9dc090e..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStart@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStart@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStart@3x.png new file mode 100644 index 000000000..2fd36c74f Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStart@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchNoChildExceedsMin@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchNoChildExceedsMin@2x.png deleted file mode 100644 index 537b1f6f1..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchNoChildExceedsMin@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchNoChildExceedsMin@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchNoChildExceedsMin@3x.png new file mode 100644 index 000000000..b20bd5bc5 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchNoChildExceedsMin@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchOneChildExceedsMin@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchOneChildExceedsMin@2x.png deleted file mode 100644 index 8fbd29f3b..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchOneChildExceedsMin@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchOneChildExceedsMin@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchOneChildExceedsMin@3x.png new file mode 100644 index 000000000..5291da33d Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchOneChildExceedsMin@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithSpaceBetween@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithSpaceBetween@2x.png deleted file mode 100644 index 37f6877fb..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithSpaceBetween@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithSpaceBetween@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithSpaceBetween@3x.png new file mode 100644 index 000000000..e99b2066a Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithSpaceBetween@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithStretchedItem@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithStretchedItem@2x.png deleted file mode 100644 index 3db7f611e..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithStretchedItem@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithStretchedItem@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithStretchedItem@3x.png new file mode 100644 index 000000000..901ed4955 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithStretchedItem@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineFirst@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineFirst@2x.png deleted file mode 100644 index 44649ce97..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineFirst@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineFirst@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineFirst@3x.png new file mode 100644 index 000000000..8921e3b90 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineFirst@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineLast@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineLast@2x.png deleted file mode 100644 index f3bb7f7fa..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineLast@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineLast@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineLast@3x.png new file mode 100644 index 000000000..137995fa0 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineLast@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingAfter@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingAfter@2x.png deleted file mode 100644 index f253af0a2..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingAfter@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingAfter@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingAfter@3x.png new file mode 100644 index 000000000..46c127dc1 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingAfter@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBalancedOut@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBalancedOut@2x.png deleted file mode 100644 index 60ffcd81b..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBalancedOut@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBalancedOut@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBalancedOut@3x.png new file mode 100644 index 000000000..13fa254a2 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBalancedOut@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBefore@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBefore@2x.png deleted file mode 100644 index e74a5b5a2..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBefore@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBefore@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBefore@3x.png new file mode 100644 index 000000000..f16edf0d6 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBefore@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildThatChangesCrossSizeWhenMainSizeIsFlexed@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildThatChangesCrossSizeWhenMainSizeIsFlexed@2x.png deleted file mode 100644 index fcb8d934c..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildThatChangesCrossSizeWhenMainSizeIsFlexed@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildThatChangesCrossSizeWhenMainSizeIsFlexed@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildThatChangesCrossSizeWhenMainSizeIsFlexed@3x.png new file mode 100644 index 000000000..1a7ddc8d1 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildThatChangesCrossSizeWhenMainSizeIsFlexed@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_fixedHeight@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_fixedHeight@2x.png deleted file mode 100644 index 435a4cf60..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_fixedHeight@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_fixedHeight@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_fixedHeight@3x.png new file mode 100644 index 000000000..99defbad1 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_fixedHeight@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_variableHeight@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_variableHeight@2x.png deleted file mode 100644 index 718b60304..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_variableHeight@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_variableHeight@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_variableHeight@3x.png new file mode 100644 index 000000000..eafca03d0 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_variableHeight@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisStretchingOccursAfterStackAxisFlexing@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisStretchingOccursAfterStackAxisFlexing@2x.png deleted file mode 100644 index cd7489cb2..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisStretchingOccursAfterStackAxisFlexing@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisStretchingOccursAfterStackAxisFlexing@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisStretchingOccursAfterStackAxisFlexing@3x.png new file mode 100644 index 000000000..c8502b45f Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisStretchingOccursAfterStackAxisFlexing@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testEmptyStack@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testEmptyStack@2x.png deleted file mode 100644 index 94dc9a5d2..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testEmptyStack@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testEmptyStack@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testEmptyStack@3x.png new file mode 100644 index 000000000..1e46b12a2 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testEmptyStack@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_overflow@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_overflow@2x.png deleted file mode 100644 index d224b220f..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_overflow@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_overflow@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_overflow@3x.png new file mode 100644 index 000000000..d3dc4782d Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_overflow@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_underflow@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_underflow@2x.png deleted file mode 100644 index df55d754f..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_underflow@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_underflow@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_underflow@3x.png new file mode 100644 index 000000000..9163c816e Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_underflow@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisOverridesIntrinsicSizeForNonFlexingChildren@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisOverridesIntrinsicSizeForNonFlexingChildren@2x.png deleted file mode 100644 index 64048bbd0..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisOverridesIntrinsicSizeForNonFlexingChildren@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisOverridesIntrinsicSizeForNonFlexingChildren@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisOverridesIntrinsicSizeForNonFlexingChildren@3x.png new file mode 100644 index 000000000..ac935cfb8 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisOverridesIntrinsicSizeForNonFlexingChildren@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_overflow@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_overflow@2x.png deleted file mode 100644 index eebc4bb9e..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_overflow@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_overflow@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_overflow@3x.png new file mode 100644 index 000000000..b29137c1a Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_overflow@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_underflow@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_underflow@2x.png deleted file mode 100644 index 54929c089..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_underflow@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_underflow@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_underflow@3x.png new file mode 100644 index 000000000..6bcdcf184 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_underflow@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWrapWithItemSpacings@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWrapWithItemSpacings@2x.png deleted file mode 100644 index 31df2f619..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWrapWithItemSpacings@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWrapWithItemSpacings@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWrapWithItemSpacings@3x.png new file mode 100644 index 000000000..6683bdfd2 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWrapWithItemSpacings@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWrapWithItemSpacingsBeingResetOnNewLines@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWrapWithItemSpacingsBeingResetOnNewLines@2x.png deleted file mode 100644 index 1824a2508..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWrapWithItemSpacingsBeingResetOnNewLines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWrapWithItemSpacingsBeingResetOnNewLines@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWrapWithItemSpacingsBeingResetOnNewLines@3x.png new file mode 100644 index 000000000..cfd0575cb Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWrapWithItemSpacingsBeingResetOnNewLines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFractionalFlexBasisResolvesAgainstParentSize@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFractionalFlexBasisResolvesAgainstParentSize@2x.png deleted file mode 100644 index eba4df4df..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFractionalFlexBasisResolvesAgainstParentSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFractionalFlexBasisResolvesAgainstParentSize@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFractionalFlexBasisResolvesAgainstParentSize@3x.png new file mode 100644 index 000000000..25e441596 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFractionalFlexBasisResolvesAgainstParentSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalBottomRight@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalBottomRight@2x.png deleted file mode 100644 index 489764fe6..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalBottomRight@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalBottomRight@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalBottomRight@3x.png new file mode 100644 index 000000000..362e37349 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalBottomRight@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalCenter@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalCenter@2x.png deleted file mode 100644 index eb0ea8c3d..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalCenter@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalCenter@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalCenter@3x.png new file mode 100644 index 000000000..a0c165558 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalCenter@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalTopLeft@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalTopLeft@2x.png deleted file mode 100644 index 886440276..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalTopLeft@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalTopLeft@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalTopLeft@3x.png new file mode 100644 index 000000000..d42e95d15 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalTopLeft@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalBottomRight@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalBottomRight@2x.png deleted file mode 100644 index 4e46d0f9d..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalBottomRight@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalBottomRight@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalBottomRight@3x.png new file mode 100644 index 000000000..6ebeb1661 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalBottomRight@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalCenter@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalCenter@2x.png deleted file mode 100644 index a0b412886..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalCenter@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalCenter@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalCenter@3x.png new file mode 100644 index 000000000..e64ada7c9 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalCenter@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalTopLeft@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalTopLeft@2x.png deleted file mode 100644 index 8277b97c0..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalTopLeft@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalTopLeft@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalTopLeft@3x.png new file mode 100644 index 000000000..e41c1bbd7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalTopLeft@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedCenterWithChildSpacing_variableHeight@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedCenterWithChildSpacing_variableHeight@2x.png deleted file mode 100644 index 46dab172c..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedCenterWithChildSpacing_variableHeight@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedCenterWithChildSpacing_variableHeight@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedCenterWithChildSpacing_variableHeight@3x.png new file mode 100644 index 000000000..87ccd8000 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedCenterWithChildSpacing_variableHeight@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithOneChild@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithOneChild@2x.png deleted file mode 100644 index da37b6226..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithOneChild@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithOneChild@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithOneChild@3x.png new file mode 100644 index 000000000..2238fe1e7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithOneChild@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithRemainingSpace@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithRemainingSpace@2x.png deleted file mode 100644 index 6de6f28ef..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithRemainingSpace@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithRemainingSpace@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithRemainingSpace@3x.png new file mode 100644 index 000000000..b82e591ca Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithRemainingSpace@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithOneChild@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithOneChild@2x.png deleted file mode 100644 index 88d0aaf20..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithOneChild@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithOneChild@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithOneChild@3x.png new file mode 100644 index 000000000..8851d7271 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithOneChild@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithRemainingSpace@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithRemainingSpace@2x.png deleted file mode 100644 index 8ee77c8de..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithRemainingSpace@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithRemainingSpace@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithRemainingSpace@3x.png new file mode 100644 index 000000000..d37217754 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithRemainingSpace@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationAndFlexFactorIsNotRespected@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationAndFlexFactorIsNotRespected@2x.png deleted file mode 100644 index d5cdcfb60..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationAndFlexFactorIsNotRespected@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationAndFlexFactorIsNotRespected@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationAndFlexFactorIsNotRespected@3x.png new file mode 100644 index 000000000..8f427b800 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationAndFlexFactorIsNotRespected@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSize@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSize@2x.png deleted file mode 100644 index ebea9c1ea..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSize@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSize@3x.png new file mode 100644 index 000000000..f8ccee780 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenChildren@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenChildren@2x.png deleted file mode 100644 index 531855960..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenChildren@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenChildren@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenChildren@3x.png new file mode 100644 index 000000000..106f1e51e Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenChildren@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenWithArbitraryFloats@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenWithArbitraryFloats@2x.png deleted file mode 100644 index 531855960..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenWithArbitraryFloats@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenWithArbitraryFloats@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenWithArbitraryFloats@3x.png new file mode 100644 index 000000000..106f1e51e Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenWithArbitraryFloats@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactor@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactor@2x.png deleted file mode 100644 index 4dda03f98..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactor@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactor@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactor@3x.png new file mode 100644 index 000000000..a69b81374 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactor@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildren@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildren@2x.png deleted file mode 100644 index 8792b39b8..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildren@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildren@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildren@3x.png new file mode 100644 index 000000000..7b290c482 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildren@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildrenArbitraryFloats@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildrenArbitraryFloats@2x.png deleted file mode 100644 index 8792b39b8..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildrenArbitraryFloats@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildrenArbitraryFloats@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildrenArbitraryFloats@3x.png new file mode 100644 index 000000000..7b290c482 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildrenArbitraryFloats@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZero@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZero@2x.png deleted file mode 100644 index 405fa880d..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZero@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZero@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZero@3x.png new file mode 100644 index 000000000..e159fd27e Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZero@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZeroWithArbitraryFloats@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZeroWithArbitraryFloats@2x.png deleted file mode 100644 index 405fa880d..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZeroWithArbitraryFloats@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZeroWithArbitraryFloats@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZeroWithArbitraryFloats@3x.png new file mode 100644 index 000000000..e159fd27e Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZeroWithArbitraryFloats@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorWithArbitraryFloats@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorWithArbitraryFloats@2x.png deleted file mode 100644 index 4dda03f98..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorWithArbitraryFloats@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorWithArbitraryFloats@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorWithArbitraryFloats@3x.png new file mode 100644 index 000000000..a69b81374 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorWithArbitraryFloats@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeWithArbitraryFloats@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeWithArbitraryFloats@2x.png deleted file mode 100644 index ebea9c1ea..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeWithArbitraryFloats@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeWithArbitraryFloats@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeWithArbitraryFloats@3x.png new file mode 100644 index 000000000..f8ccee780 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeWithArbitraryFloats@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedBaselineAlignments@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedBaselineAlignments@2x.png deleted file mode 100644 index 28e13ab82..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedBaselineAlignments@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedBaselineAlignments@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedBaselineAlignments@3x.png new file mode 100644 index 000000000..30aeb02e6 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedBaselineAlignments@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedStackLayoutStretchDoesNotViolateWidth@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedStackLayoutStretchDoesNotViolateWidth@2x.png deleted file mode 100644 index 2a5fd841b..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedStackLayoutStretchDoesNotViolateWidth@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedStackLayoutStretchDoesNotViolateWidth@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedStackLayoutStretchDoesNotViolateWidth@3x.png new file mode 100644 index 000000000..e52e446b8 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedStackLayoutStretchDoesNotViolateWidth@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviorsWhenAllFlexShrinkChildrenHaveBeenClampedToZeroButViolationStillExists@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviorsWhenAllFlexShrinkChildrenHaveBeenClampedToZeroButViolationStillExists@2x.png deleted file mode 100644 index 0471d0cc0..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviorsWhenAllFlexShrinkChildrenHaveBeenClampedToZeroButViolationStillExists@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviorsWhenAllFlexShrinkChildrenHaveBeenClampedToZeroButViolationStillExists@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviorsWhenAllFlexShrinkChildrenHaveBeenClampedToZeroButViolationStillExists@3x.png new file mode 100644 index 000000000..bff14cef7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviorsWhenAllFlexShrinkChildrenHaveBeenClampedToZeroButViolationStillExists@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_flex@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_flex@2x.png deleted file mode 100644 index 3c15de518..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_flex@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_flex@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_flex@3x.png new file mode 100644 index 000000000..f1d56f5d9 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_flex@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyCenter@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyCenter@2x.png deleted file mode 100644 index 07bf66b68..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyCenter@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyCenter@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyCenter@3x.png new file mode 100644 index 000000000..9cf2844a2 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyCenter@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyEnd@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyEnd@2x.png deleted file mode 100644 index a68c62486..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyEnd@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyEnd@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyEnd@3x.png new file mode 100644 index 000000000..f9bae5f4e Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyEnd@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyStart@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyStart@2x.png deleted file mode 100644 index e07839844..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyStart@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyStart@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyStart@3x.png new file mode 100644 index 000000000..25983b85e Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyStart@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEqually@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEqually@2x.png deleted file mode 100644 index 12a70c6a6..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEqually@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEqually@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEqually@3x.png new file mode 100644 index 000000000..5f3e44d3a Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEqually@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildren@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildren@2x.png deleted file mode 100644 index 5ab4b9fd6..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildren@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildren@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildren@3x.png new file mode 100644 index 000000000..5a8a390c8 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildren@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildrenWithArbitraryFloats@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildrenWithArbitraryFloats@2x.png deleted file mode 100644 index 5ab4b9fd6..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildrenWithArbitraryFloats@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildrenWithArbitraryFloats@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildrenWithArbitraryFloats@3x.png new file mode 100644 index 000000000..5a8a390c8 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildrenWithArbitraryFloats@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyWithArbitraryFloats@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyWithArbitraryFloats@2x.png deleted file mode 100644 index 12a70c6a6..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyWithArbitraryFloats@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyWithArbitraryFloats@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyWithArbitraryFloats@3x.png new file mode 100644 index 000000000..5f3e44d3a Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyWithArbitraryFloats@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionally@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionally@2x.png deleted file mode 100644 index 262cf4c26..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionally@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionally@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionally@3x.png new file mode 100644 index 000000000..a8cf78f3d Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionally@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildren@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildren@2x.png deleted file mode 100644 index 584294ebc..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildren@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildren@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildren@3x.png new file mode 100644 index 000000000..ee4f77437 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildren@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildrenWithArbitraryFloats@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildrenWithArbitraryFloats@2x.png deleted file mode 100644 index 584294ebc..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildrenWithArbitraryFloats@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildrenWithArbitraryFloats@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildrenWithArbitraryFloats@3x.png new file mode 100644 index 000000000..ee4f77437 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildrenWithArbitraryFloats@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyWithArbitraryFloats@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyWithArbitraryFloats@2x.png deleted file mode 100644 index 262cf4c26..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyWithArbitraryFloats@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyWithArbitraryFloats@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyWithArbitraryFloats@3x.png new file mode 100644 index 000000000..a8cf78f3d Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyWithArbitraryFloats@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChild@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChild@2x.png deleted file mode 100644 index c55515791..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChild@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChild@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChild@3x.png new file mode 100644 index 000000000..83a97399b Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChild@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChildWithArbitraryFloats@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChildWithArbitraryFloats@2x.png deleted file mode 100644 index c55515791..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChildWithArbitraryFloats@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChildWithArbitraryFloats@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChildWithArbitraryFloats@3x.png new file mode 100644 index 000000000..83a97399b Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChildWithArbitraryFloats@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacingWithChildrenHavingNilObjects_variableHeight@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacingWithChildrenHavingNilObjects_variableHeight@2x.png deleted file mode 100644 index ca249a5da..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacingWithChildrenHavingNilObjects_variableHeight@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacingWithChildrenHavingNilObjects_variableHeight@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacingWithChildrenHavingNilObjects_variableHeight@3x.png new file mode 100644 index 000000000..96dd67b3f Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacingWithChildrenHavingNilObjects_variableHeight@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacing_variableHeight@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacing_variableHeight@2x.png deleted file mode 100644 index 77d64be4c..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacing_variableHeight@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacing_variableHeight@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacing_variableHeight@3x.png new file mode 100644 index 000000000..54b5c07d8 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacing_variableHeight@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_flex@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_flex@2x.png deleted file mode 100644 index 89dac5e44..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_flex@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_flex@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_flex@3x.png new file mode 100644 index 000000000..342cf7616 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_flex@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyCenter@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyCenter@2x.png deleted file mode 100644 index 2dfbc8002..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyCenter@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyCenter@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyCenter@3x.png new file mode 100644 index 000000000..d5c5ab8f7 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyCenter@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyEnd@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyEnd@2x.png deleted file mode 100644 index 6fb41b79f..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyEnd@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyEnd@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyEnd@3x.png new file mode 100644 index 000000000..84f23ad3f Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyEnd@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceAround@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceAround@2x.png deleted file mode 100644 index 1d71834f7..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceAround@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceAround@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceAround@3x.png new file mode 100644 index 000000000..1101e52b9 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceAround@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceBetween@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceBetween@2x.png deleted file mode 100644 index 49943caaa..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceBetween@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceBetween@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceBetween@3x.png new file mode 100644 index 000000000..cd5adf675 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceBetween@3x.png differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyStart@2x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyStart@2x.png deleted file mode 100644 index 4be46ae87..000000000 Binary files a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyStart@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyStart@3x.png b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyStart@3x.png new file mode 100644 index 000000000..4a59de3a5 Binary files /dev/null and b/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyStart@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testShadowing_ASTextNode2@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testShadowing_ASTextNode2@2x.png deleted file mode 100644 index 7a336db72..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testShadowing_ASTextNode2@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testShadowing_ASTextNode2@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testShadowing_ASTextNode2@3x.png new file mode 100644 index 000000000..b1bfcf94c Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testShadowing_ASTextNode2@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInsetHighlight_ASTextNode2@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInsetHighlight_ASTextNode2@2x.png deleted file mode 100644 index b29a52445..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInsetHighlight_ASTextNode2@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInsetHighlight_ASTextNode2@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInsetHighlight_ASTextNode2@3x.png new file mode 100644 index 000000000..8cee47b50 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInsetHighlight_ASTextNode2@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize_ASTextNode2@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize_ASTextNode2@2x.png deleted file mode 100644 index 84ef8a2fc..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize_ASTextNode2@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize_ASTextNode2@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize_ASTextNode2@3x.png new file mode 100644 index 000000000..91deb4298 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize_ASTextNode2@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInset_ASTextNode2@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInset_ASTextNode2@2x.png deleted file mode 100644 index 228b33f21..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInset_ASTextNode2@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInset_ASTextNode2@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInset_ASTextNode2@3x.png new file mode 100644 index 000000000..0df4fe796 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextContainerInset_ASTextNode2@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTintColor_ASTextNode2@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTintColor_ASTextNode2@2x.png deleted file mode 100644 index 67cfb4037..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTintColor_ASTextNode2@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTintColor_ASTextNode2@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTintColor_ASTextNode2@3x.png new file mode 100644 index 000000000..ccbc67aa5 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTintColor_ASTextNode2@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_0Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_0Lines@2x.png deleted file mode 100644 index 8ff1790e3..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_0Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_0Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_0Lines@3x.png new file mode 100644 index 000000000..72b99064b Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_0Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_1Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_1Lines@2x.png deleted file mode 100644 index 389ba9d24..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_1Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_1Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_1Lines@3x.png new file mode 100644 index 000000000..433b560b5 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_1Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_2Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_2Lines@2x.png deleted file mode 100644 index a541b833d..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_2Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_2Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_2Lines@3x.png new file mode 100644 index 000000000..9dbe2cb40 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_2Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_3Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_3Lines@2x.png deleted file mode 100644 index 805e1768b..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_3Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_3Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_3Lines@3x.png new file mode 100644 index 000000000..913995bc1 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByCharWrapping_3Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_0Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_0Lines@2x.png deleted file mode 100644 index 80dc5ecf4..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_0Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_0Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_0Lines@3x.png new file mode 100644 index 000000000..b598c2f65 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_0Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_1Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_1Lines@2x.png deleted file mode 100644 index 36d373ecd..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_1Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_1Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_1Lines@3x.png new file mode 100644 index 000000000..34c5e50d3 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_1Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_2Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_2Lines@2x.png deleted file mode 100644 index f3a3d0188..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_2Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_2Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_2Lines@3x.png new file mode 100644 index 000000000..44bf5b938 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_2Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_3Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_3Lines@2x.png deleted file mode 100644 index b1b72a30f..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_3Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_3Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_3Lines@3x.png new file mode 100644 index 000000000..d38ed956b Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingHead_3Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_0Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_0Lines@2x.png deleted file mode 100644 index a8379af9a..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_0Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_0Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_0Lines@3x.png new file mode 100644 index 000000000..6b04153d9 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_0Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_1Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_1Lines@2x.png deleted file mode 100644 index d7fa6a919..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_1Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_1Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_1Lines@3x.png new file mode 100644 index 000000000..4915fc5ab Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_1Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_2Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_2Lines@2x.png deleted file mode 100644 index 1b1f88b0a..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_2Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_2Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_2Lines@3x.png new file mode 100644 index 000000000..c3c049d0b Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_2Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_3Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_3Lines@2x.png deleted file mode 100644 index 4406366a4..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_3Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_3Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_3Lines@3x.png new file mode 100644 index 000000000..fe97bedfd Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingMiddle_3Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_0Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_0Lines@2x.png deleted file mode 100644 index c5f9fc75b..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_0Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_0Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_0Lines@3x.png new file mode 100644 index 000000000..0aabf01c2 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_0Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_1Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_1Lines@2x.png deleted file mode 100644 index a12bc74e3..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_1Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_1Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_1Lines@3x.png new file mode 100644 index 000000000..ea5015322 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_1Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_2Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_2Lines@2x.png deleted file mode 100644 index 3500c32cc..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_2Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_2Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_2Lines@3x.png new file mode 100644 index 000000000..533f9d070 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_2Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_3Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_3Lines@2x.png deleted file mode 100644 index eed4f4019..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_3Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_3Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_3Lines@3x.png new file mode 100644 index 000000000..73d4d2ce9 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByTruncatingTail_3Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_0Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_0Lines@2x.png deleted file mode 100644 index de5e1ab00..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_0Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_0Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_0Lines@3x.png new file mode 100644 index 000000000..703ae9376 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_0Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_1Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_1Lines@2x.png deleted file mode 100644 index 7f13b88de..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_1Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_1Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_1Lines@3x.png new file mode 100644 index 000000000..e2ddb64f4 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_1Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_2Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_2Lines@2x.png deleted file mode 100644 index f96874355..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_2Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_2Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_2Lines@3x.png new file mode 100644 index 000000000..db31086fe Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_2Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_3Lines@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_3Lines@2x.png deleted file mode 100644 index a296aa16a..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_3Lines@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_3Lines@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_3Lines@3x.png new file mode 100644 index 000000000..daeaad94f Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTextTruncationModes_ASTextNode2_NSLineBreakByWordWrapping_3Lines@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testThatDefaultTruncationTokenAttributesAreInheritedFromTextWhenTruncated_ASTextNode2@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testThatDefaultTruncationTokenAttributesAreInheritedFromTextWhenTruncated_ASTextNode2@2x.png deleted file mode 100644 index 18266450f..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testThatDefaultTruncationTokenAttributesAreInheritedFromTextWhenTruncated_ASTextNode2@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testThatDefaultTruncationTokenAttributesAreInheritedFromTextWhenTruncated_ASTextNode2@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testThatDefaultTruncationTokenAttributesAreInheritedFromTextWhenTruncated_ASTextNode2@3x.png new file mode 100644 index 000000000..8e74ec1bd Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testThatDefaultTruncationTokenAttributesAreInheritedFromTextWhenTruncated_ASTextNode2@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testThatSlowPathTruncationWorks_ASTextNode2@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testThatSlowPathTruncationWorks_ASTextNode2@2x.png deleted file mode 100644 index bb4c6cd59..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testThatSlowPathTruncationWorks_ASTextNode2@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testThatSlowPathTruncationWorks_ASTextNode2@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testThatSlowPathTruncationWorks_ASTextNode2@3x.png new file mode 100644 index 000000000..591b71a24 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testThatSlowPathTruncationWorks_ASTextNode2@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTintColorHierarchyChange_green_tint_from_parent@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTintColorHierarchyChange_green_tint_from_parent@2x.png deleted file mode 100644 index 966591c52..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTintColorHierarchyChange_green_tint_from_parent@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTintColorHierarchyChange_green_tint_from_parent@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTintColorHierarchyChange_green_tint_from_parent@3x.png new file mode 100644 index 000000000..bd27c525d Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTintColorHierarchyChange_green_tint_from_parent@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTintColorHierarchyChange_red_tint_from_parent@2x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTintColorHierarchyChange_red_tint_from_parent@2x.png deleted file mode 100644 index 0d7f5ab4a..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTintColorHierarchyChange_red_tint_from_parent@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTintColorHierarchyChange_red_tint_from_parent@3x.png b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTintColorHierarchyChange_red_tint_from_parent@3x.png new file mode 100644 index 000000000..42129bde6 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNode2SnapshotTests/testTintColorHierarchyChange_red_tint_from_parent@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testFontPointSizeScaling@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testFontPointSizeScaling@2x.png deleted file mode 100644 index 111bd5004..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testFontPointSizeScaling@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testFontPointSizeScaling@3x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testFontPointSizeScaling@3x.png new file mode 100644 index 000000000..c5a96ef59 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testFontPointSizeScaling@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testShadowing@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testShadowing@2x.png deleted file mode 100644 index edb68c14a..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testShadowing@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testShadowing@3x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testShadowing@3x.png new file mode 100644 index 000000000..3596751c8 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testShadowing@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInset2@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInset2@2x.png deleted file mode 100644 index d66bb3bce..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInset2@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInset@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInset@2x.png deleted file mode 100644 index 228b33f21..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInset@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInset@3x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInset@3x.png new file mode 100644 index 000000000..cf5dad1fd Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInset@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetHighlight@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetHighlight@2x.png deleted file mode 100644 index 8fcf950b8..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetHighlight@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetHighlight@3x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetHighlight@3x.png new file mode 100644 index 000000000..7824b4424 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetHighlight@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize@2x.png deleted file mode 100644 index b31be73a3..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize@3x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize@3x.png new file mode 100644 index 000000000..2797e8d2e Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatFastPathTruncationWorks@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatFastPathTruncationWorks@2x.png deleted file mode 100644 index 37b5444ef..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatFastPathTruncationWorks@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatSlowPathTruncationWorks@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatSlowPathTruncationWorks@2x.png deleted file mode 100644 index 5e629b11b..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatSlowPathTruncationWorks@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatSlowPathTruncationWorks@3x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatSlowPathTruncationWorks@3x.png new file mode 100644 index 000000000..c48658c82 Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatSlowPathTruncationWorks@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatTruncationTokenAttributesPrecedeThoseInheritedFromTextWhenTruncateTailMode@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatTruncationTokenAttributesPrecedeThoseInheritedFromTextWhenTruncateTailMode@2x.png deleted file mode 100644 index 40351ad62..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatTruncationTokenAttributesPrecedeThoseInheritedFromTextWhenTruncateTailMode@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTintColorHierarchyChange_green_tint_from_parent@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTintColorHierarchyChange_green_tint_from_parent@2x.png deleted file mode 100644 index cecd2aeaa..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTintColorHierarchyChange_green_tint_from_parent@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTintColorHierarchyChange_green_tint_from_parent@3x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTintColorHierarchyChange_green_tint_from_parent@3x.png new file mode 100644 index 000000000..31a9ee4ae Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTintColorHierarchyChange_green_tint_from_parent@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTintColorHierarchyChange_red_tint_from_parent@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTintColorHierarchyChange_red_tint_from_parent@2x.png deleted file mode 100644 index 34239d983..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTintColorHierarchyChange_red_tint_from_parent@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTintColorHierarchyChange_red_tint_from_parent@3x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTintColorHierarchyChange_red_tint_from_parent@3x.png new file mode 100644 index 000000000..0f3b6663c Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTintColorHierarchyChange_red_tint_from_parent@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUIGraphicsRendererDrawingExperiment@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUIGraphicsRendererDrawingExperiment@2x.png deleted file mode 100644 index 228b33f21..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUIGraphicsRendererDrawingExperiment@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUIGraphicsRendererDrawingExperiment@3x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUIGraphicsRendererDrawingExperiment@3x.png new file mode 100644 index 000000000..cf5dad1fd Binary files /dev/null and b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUIGraphicsRendererDrawingExperiment@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTestingTintColor_user_interface_style_dark@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTestingTintColor_user_interface_style_dark@2x.png deleted file mode 100644 index 8380fd97f..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTestingTintColor_user_interface_style_dark@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTestingTintColor_user_interface_style_dark@3x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTestingTintColor_user_interface_style_dark@3x.png index 1a31b0ffa..8ba07d9db 100644 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTestingTintColor_user_interface_style_dark@3x.png and b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTestingTintColor_user_interface_style_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTestingTintColor_user_interface_style_light@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTestingTintColor_user_interface_style_light@2x.png deleted file mode 100644 index 2d0e800a9..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTestingTintColor_user_interface_style_light@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTestingTintColor_user_interface_style_light@3x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTestingTintColor_user_interface_style_light@3x.png index 9fd32842e..ffbfb3e83 100644 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTestingTintColor_user_interface_style_light@3x.png and b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTestingTintColor_user_interface_style_light@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_dark@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_dark@2x.png deleted file mode 100644 index 8380fd97f..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_dark@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_dark@3x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_dark@3x.png index 1a31b0ffa..8ba07d9db 100644 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_dark@3x.png and b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_dark@3x.png differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_light@2x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_light@2x.png deleted file mode 100644 index 2d0e800a9..000000000 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_light@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_light@3x.png b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_light@3x.png index 9fd32842e..ffbfb3e83 100644 Binary files a/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_light@3x.png and b/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testUserInterfaceStyleSnapshotTesting_user_interface_style_light@3x.png differ diff --git a/Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithMultipleElementsShouldSizeToLargestElement@2x.png b/Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithMultipleElementsShouldSizeToLargestElement@2x.png deleted file mode 100644 index e34eef76c..000000000 Binary files a/Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithMultipleElementsShouldSizeToLargestElement@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithMultipleElementsShouldSizeToLargestElement@3x.png b/Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithMultipleElementsShouldSizeToLargestElement@3x.png new file mode 100644 index 000000000..1e97a93a8 Binary files /dev/null and b/Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithMultipleElementsShouldSizeToLargestElement@3x.png differ diff --git a/Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithOneElementShouldSizeToElement@2x.png b/Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithOneElementShouldSizeToElement@2x.png deleted file mode 100644 index d63856e6e..000000000 Binary files a/Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithOneElementShouldSizeToElement@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithOneElementShouldSizeToElement@3x.png b/Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithOneElementShouldSizeToElement@3x.png new file mode 100644 index 000000000..f74f91602 Binary files /dev/null and b/Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithOneElementShouldSizeToElement@3x.png differ diff --git a/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedAllCorners@2x.png b/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedAllCorners@2x.png deleted file mode 100644 index 54bb3fda7..000000000 Binary files a/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedAllCorners@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedAllCorners@3x.png b/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedAllCorners@3x.png new file mode 100644 index 000000000..e5e75af9c Binary files /dev/null and b/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedAllCorners@3x.png differ diff --git a/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedBorderless@2x.png b/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedBorderless@2x.png deleted file mode 100644 index bda0688fd..000000000 Binary files a/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedBorderless@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedBorderless@3x.png b/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedBorderless@3x.png new file mode 100644 index 000000000..884927db0 Binary files /dev/null and b/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedBorderless@3x.png differ diff --git a/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedPartial@2x.png b/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedPartial@2x.png deleted file mode 100644 index d728ffea9..000000000 Binary files a/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedPartial@2x.png and /dev/null differ diff --git a/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedPartial@3x.png b/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedPartial@3x.png new file mode 100644 index 000000000..c8347fb0a Binary files /dev/null and b/Tests/ReferenceImages_64/UIImage_ASConvenienceTests/testRoundedPartial@3x.png differ diff --git a/build.sh b/build.sh index 37e34a523..d46f452d3 100755 --- a/build.sh +++ b/build.sh @@ -9,8 +9,8 @@ # echo ************* diagnostics end # run this on a 2x device until we've updated snapshot images to 3x -PLATFORM="${TEXTURE_BUILD_PLATFORM:-platform=iOS Simulator,OS=18.5,name=iPhone SE (3rd generation)}" -SDK="${TEXTURE_BUILD_SDK:-iphonesimulator18.5}" +PLATFORM="${TEXTURE_BUILD_PLATFORM:-platform=iOS Simulator,OS=26.5,name=iPhone 17}" +SDK="${TEXTURE_BUILD_SDK:-iphonesimulator26.5}" DERIVED_DATA_PATH="~/ASDKDerivedData" # It is pitch black. diff --git a/examples/ASMapNode/Podfile b/examples/ASMapNode/Podfile index 881c8d079..0a8943ba1 100644 --- a/examples/ASMapNode/Podfile +++ b/examples/ASMapNode/Podfile @@ -1,5 +1,5 @@ source 'https://cdn.cocoapods.org/' -platform :ios, '14.0' +platform :ios, '15.6' target 'Sample' do pod 'Texture', :path => '../..' end diff --git a/examples/ASMapNode/Sample.xcodeproj/project.pbxproj b/examples/ASMapNode/Sample.xcodeproj/project.pbxproj index cfe12bfd1..d7248e70d 100644 --- a/examples/ASMapNode/Sample.xcodeproj/project.pbxproj +++ b/examples/ASMapNode/Sample.xcodeproj/project.pbxproj @@ -332,7 +332,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; INFOPLIST_FILE = Sample/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 14.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.6; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = org.AsyncDisplayKit.Sample; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -346,7 +346,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; INFOPLIST_FILE = Sample/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 14.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.6; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = org.AsyncDisplayKit.Sample; PRODUCT_NAME = "$(TARGET_NAME)";