haikuwebkit/LayoutTests/tiled-drawing/top-content-inset-fixed-att...

34 lines
606 B
HTML
Raw Permalink Normal View History

Fixed backgrounds don't paint in blurred inset areas https://bugs.webkit.org/show_bug.cgi?id=135712 Reviewed by Simon Fraser. Source/WebCore: Background geometry calculations for fixed background need to use the larger visible rect. The first version of this patch caused a regression because it universally adjusted the value for top to account for the inset whether or not the viewportRect location was adjusted for the same. This version fixes that — those two changes go hand-in-hand. * rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::calculateBackgroundImageGeometry): LayoutTests: * platform/mac-wk1/TestExpectations: * platform/mac-wk1/fast: Added. * platform/mac-wk1/fast/backgrounds: Added. * platform/mac-wk1/fast/backgrounds/resources: Added. * platform/mac-wk1/fast/backgrounds/resources/green.png: Added. * platform/mac-wk1/fast/backgrounds/top-content-inset-fixed-attachment-expected.html: Added. * platform/mac-wk1/fast/backgrounds/top-content-inset-fixed-attachment.html: Added. * platform/mac-wk2/tiled-drawing/resources/green-blue.png: Added. * platform/mac-wk2/tiled-drawing/resources/green.png: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-body-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-body.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html: Added. Canonical link: https://commits.webkit.org/153693@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@172417 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2014-08-11 23:03:49 +00:00
<html>
<head>
<style>
body {
height:2000px;
margin:0;
overflow:hidden;
}
#fixed-background-box {
background-position sometimes doesn't work properly with background-attachment: fixed https://bugs.webkit.org/show_bug.cgi?id=103757 rdar://problem/18749925 Reviewed by Darin Adler. Source/WebCore: Fix sizing issues with fixed backgrounds when top content inset (blurred toolbar) is in effect. The primary issue was that positioningAreaSize was including the top content inset height, and should not have been, but there were also issues with the "fixedBackgroundPaintsInLocalCoordinates" code path, which kicks in when the root background is fixed. Tests: platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-local.html platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover.html platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-local.html platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-positioned.html * rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::calculateBackgroundImageGeometry): LayoutTests: Tests various configurations for painting the fixed backgrounds. The existing test was actually wrong, so fixed to use a gradient (so you can see where the edges of the image are), and be valid. Testing is complicated by the fact that setting top content inset actually causes the snapshot to be inset at the top. * platform/mac-wk2/tiled-drawing/resources/bordered-image.png: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-local-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-local.html: Copied from LayoutTests/platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-expected.html: * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-local-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-local.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-positioned-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-positioned.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html: Canonical link: https://commits.webkit.org/162888@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@184065 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2015-05-11 03:56:15 +00:00
position: absolute;
top: -100px;
Fixed backgrounds don't paint in blurred inset areas https://bugs.webkit.org/show_bug.cgi?id=135712 Reviewed by Simon Fraser. Source/WebCore: Background geometry calculations for fixed background need to use the larger visible rect. The first version of this patch caused a regression because it universally adjusted the value for top to account for the inset whether or not the viewportRect location was adjusted for the same. This version fixes that — those two changes go hand-in-hand. * rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::calculateBackgroundImageGeometry): LayoutTests: * platform/mac-wk1/TestExpectations: * platform/mac-wk1/fast: Added. * platform/mac-wk1/fast/backgrounds: Added. * platform/mac-wk1/fast/backgrounds/resources: Added. * platform/mac-wk1/fast/backgrounds/resources/green.png: Added. * platform/mac-wk1/fast/backgrounds/top-content-inset-fixed-attachment-expected.html: Added. * platform/mac-wk1/fast/backgrounds/top-content-inset-fixed-attachment.html: Added. * platform/mac-wk2/tiled-drawing/resources/green-blue.png: Added. * platform/mac-wk2/tiled-drawing/resources/green.png: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-body-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-body.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html: Added. Canonical link: https://commits.webkit.org/153693@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@172417 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2014-08-11 23:03:49 +00:00
width:400px;
height:600px;
background-position sometimes doesn't work properly with background-attachment: fixed https://bugs.webkit.org/show_bug.cgi?id=103757 rdar://problem/18749925 Reviewed by Darin Adler. Source/WebCore: Fix sizing issues with fixed backgrounds when top content inset (blurred toolbar) is in effect. The primary issue was that positioningAreaSize was including the top content inset height, and should not have been, but there were also issues with the "fixedBackgroundPaintsInLocalCoordinates" code path, which kicks in when the root background is fixed. Tests: platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-local.html platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover.html platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-local.html platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-positioned.html * rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::calculateBackgroundImageGeometry): LayoutTests: Tests various configurations for painting the fixed backgrounds. The existing test was actually wrong, so fixed to use a gradient (so you can see where the edges of the image are), and be valid. Testing is complicated by the fact that setting top content inset actually causes the snapshot to be inset at the top. * platform/mac-wk2/tiled-drawing/resources/bordered-image.png: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-local-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-local.html: Copied from LayoutTests/platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-expected.html: * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-local-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-local.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-positioned-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-positioned.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html: Canonical link: https://commits.webkit.org/162888@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@184065 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2015-05-11 03:56:15 +00:00
background-image: linear-gradient(blue, blue 10px, green 10px, green 490px, black 490px, black);
Fixed backgrounds don't paint in blurred inset areas https://bugs.webkit.org/show_bug.cgi?id=135712 Reviewed by Simon Fraser. Source/WebCore: Background geometry calculations for fixed background need to use the larger visible rect. The first version of this patch caused a regression because it universally adjusted the value for top to account for the inset whether or not the viewportRect location was adjusted for the same. This version fixes that — those two changes go hand-in-hand. * rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::calculateBackgroundImageGeometry): LayoutTests: * platform/mac-wk1/TestExpectations: * platform/mac-wk1/fast: Added. * platform/mac-wk1/fast/backgrounds: Added. * platform/mac-wk1/fast/backgrounds/resources: Added. * platform/mac-wk1/fast/backgrounds/resources/green.png: Added. * platform/mac-wk1/fast/backgrounds/top-content-inset-fixed-attachment-expected.html: Added. * platform/mac-wk1/fast/backgrounds/top-content-inset-fixed-attachment.html: Added. * platform/mac-wk2/tiled-drawing/resources/green-blue.png: Added. * platform/mac-wk2/tiled-drawing/resources/green.png: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-body-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-body.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html: Added. Canonical link: https://commits.webkit.org/153693@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@172417 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2014-08-11 23:03:49 +00:00
background-attachment:fixed;
background-position sometimes doesn't work properly with background-attachment: fixed https://bugs.webkit.org/show_bug.cgi?id=103757 rdar://problem/18749925 Reviewed by Darin Adler. Source/WebCore: Fix sizing issues with fixed backgrounds when top content inset (blurred toolbar) is in effect. The primary issue was that positioningAreaSize was including the top content inset height, and should not have been, but there were also issues with the "fixedBackgroundPaintsInLocalCoordinates" code path, which kicks in when the root background is fixed. Tests: platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-local.html platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover.html platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-local.html platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-positioned.html * rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::calculateBackgroundImageGeometry): LayoutTests: Tests various configurations for painting the fixed backgrounds. The existing test was actually wrong, so fixed to use a gradient (so you can see where the edges of the image are), and be valid. Testing is complicated by the fact that setting top content inset actually causes the snapshot to be inset at the top. * platform/mac-wk2/tiled-drawing/resources/bordered-image.png: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-local-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-local.html: Copied from LayoutTests/platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-expected.html: * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-local-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-local.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-positioned-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-positioned.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html: Canonical link: https://commits.webkit.org/162888@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@184065 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2015-05-11 03:56:15 +00:00
background-repeat:no-repeat;
Fixed backgrounds don't paint in blurred inset areas https://bugs.webkit.org/show_bug.cgi?id=135712 Reviewed by Simon Fraser. Source/WebCore: Background geometry calculations for fixed background need to use the larger visible rect. The first version of this patch caused a regression because it universally adjusted the value for top to account for the inset whether or not the viewportRect location was adjusted for the same. This version fixes that — those two changes go hand-in-hand. * rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::calculateBackgroundImageGeometry): LayoutTests: * platform/mac-wk1/TestExpectations: * platform/mac-wk1/fast: Added. * platform/mac-wk1/fast/backgrounds: Added. * platform/mac-wk1/fast/backgrounds/resources: Added. * platform/mac-wk1/fast/backgrounds/resources/green.png: Added. * platform/mac-wk1/fast/backgrounds/top-content-inset-fixed-attachment-expected.html: Added. * platform/mac-wk1/fast/backgrounds/top-content-inset-fixed-attachment.html: Added. * platform/mac-wk2/tiled-drawing/resources/green-blue.png: Added. * platform/mac-wk2/tiled-drawing/resources/green.png: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-body-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-body.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html: Added. Canonical link: https://commits.webkit.org/153693@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@172417 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2014-08-11 23:03:49 +00:00
}
</style>
background-position sometimes doesn't work properly with background-attachment: fixed https://bugs.webkit.org/show_bug.cgi?id=103757 rdar://problem/18749925 Reviewed by Darin Adler. Source/WebCore: Fix sizing issues with fixed backgrounds when top content inset (blurred toolbar) is in effect. The primary issue was that positioningAreaSize was including the top content inset height, and should not have been, but there were also issues with the "fixedBackgroundPaintsInLocalCoordinates" code path, which kicks in when the root background is fixed. Tests: platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-local.html platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover.html platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-local.html platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-positioned.html * rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::calculateBackgroundImageGeometry): LayoutTests: Tests various configurations for painting the fixed backgrounds. The existing test was actually wrong, so fixed to use a gradient (so you can see where the edges of the image are), and be valid. Testing is complicated by the fact that setting top content inset actually causes the snapshot to be inset at the top. * platform/mac-wk2/tiled-drawing/resources/bordered-image.png: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-local-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-local.html: Copied from LayoutTests/platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-expected.html: * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-local-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-local.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-positioned-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-positioned.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html: Canonical link: https://commits.webkit.org/162888@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@184065 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2015-05-11 03:56:15 +00:00
<script>
function runTest() {
if (window.internals)
window.internals.setTopContentInset(100);
}
window.addEventListener('load', runTest, false);
</script>
Fixed backgrounds don't paint in blurred inset areas https://bugs.webkit.org/show_bug.cgi?id=135712 Reviewed by Simon Fraser. Source/WebCore: Background geometry calculations for fixed background need to use the larger visible rect. The first version of this patch caused a regression because it universally adjusted the value for top to account for the inset whether or not the viewportRect location was adjusted for the same. This version fixes that — those two changes go hand-in-hand. * rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::calculateBackgroundImageGeometry): LayoutTests: * platform/mac-wk1/TestExpectations: * platform/mac-wk1/fast: Added. * platform/mac-wk1/fast/backgrounds: Added. * platform/mac-wk1/fast/backgrounds/resources: Added. * platform/mac-wk1/fast/backgrounds/resources/green.png: Added. * platform/mac-wk1/fast/backgrounds/top-content-inset-fixed-attachment-expected.html: Added. * platform/mac-wk1/fast/backgrounds/top-content-inset-fixed-attachment.html: Added. * platform/mac-wk2/tiled-drawing/resources/green-blue.png: Added. * platform/mac-wk2/tiled-drawing/resources/green.png: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-body-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-body.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html: Added. Canonical link: https://commits.webkit.org/153693@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@172417 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2014-08-11 23:03:49 +00:00
</head>
<body>
background-position sometimes doesn't work properly with background-attachment: fixed https://bugs.webkit.org/show_bug.cgi?id=103757 rdar://problem/18749925 Reviewed by Darin Adler. Source/WebCore: Fix sizing issues with fixed backgrounds when top content inset (blurred toolbar) is in effect. The primary issue was that positioningAreaSize was including the top content inset height, and should not have been, but there were also issues with the "fixedBackgroundPaintsInLocalCoordinates" code path, which kicks in when the root background is fixed. Tests: platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-local.html platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover.html platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-local.html platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-positioned.html * rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::calculateBackgroundImageGeometry): LayoutTests: Tests various configurations for painting the fixed backgrounds. The existing test was actually wrong, so fixed to use a gradient (so you can see where the edges of the image are), and be valid. Testing is complicated by the fact that setting top content inset actually causes the snapshot to be inset at the top. * platform/mac-wk2/tiled-drawing/resources/bordered-image.png: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-local-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover-local.html: Copied from LayoutTests/platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-cover.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-expected.html: * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-local-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-local.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-positioned-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-positioned.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html: Canonical link: https://commits.webkit.org/162888@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@184065 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2015-05-11 03:56:15 +00:00
<div id="fixed-background-box"></div>
Fixed backgrounds don't paint in blurred inset areas https://bugs.webkit.org/show_bug.cgi?id=135712 Reviewed by Simon Fraser. Source/WebCore: Background geometry calculations for fixed background need to use the larger visible rect. The first version of this patch caused a regression because it universally adjusted the value for top to account for the inset whether or not the viewportRect location was adjusted for the same. This version fixes that — those two changes go hand-in-hand. * rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::calculateBackgroundImageGeometry): LayoutTests: * platform/mac-wk1/TestExpectations: * platform/mac-wk1/fast: Added. * platform/mac-wk1/fast/backgrounds: Added. * platform/mac-wk1/fast/backgrounds/resources: Added. * platform/mac-wk1/fast/backgrounds/resources/green.png: Added. * platform/mac-wk1/fast/backgrounds/top-content-inset-fixed-attachment-expected.html: Added. * platform/mac-wk1/fast/backgrounds/top-content-inset-fixed-attachment.html: Added. * platform/mac-wk2/tiled-drawing/resources/green-blue.png: Added. * platform/mac-wk2/tiled-drawing/resources/green.png: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-body-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-body.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment-expected.html: Added. * platform/mac-wk2/tiled-drawing/top-content-inset-fixed-attachment.html: Added. Canonical link: https://commits.webkit.org/153693@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@172417 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2014-08-11 23:03:49 +00:00
</body>
</html>