!currContainer->hasTransformRelatedProperty() in LayoutObject.cpp |
|||||
Issue descriptionDetailed report: https://cluster-fuzz.appspot.com/testcase?key=6144103126663168 Fuzzer: inferno_layout_test_unmodified Job Type: linux_debug_content_shell_drt Platform Id: linux Crash Type: CHECK failure Crash Address: Crash State: !currContainer->hasTransformRelatedProperty() in LayoutObject.cpp blink::LayoutObject::offsetFromAncestorContainer blink::LayoutBoxModelObject::pushMappingToContainer Sanitizer: address (ASAN) Regressed: https://cluster-fuzz.appspot.com/revisions?job=linux_debug_content_shell_drt&range=283188:283414 Minimized Testcase (0.53 Kb): Download: https://cluster-fuzz.appspot.com/download/AMIfv96jOYLEYL8Ixf7LLsrwnxClY5L4g7-r1hFKDLp0lK5IrMBSkcVmFpOqOM3II--fhxWmDFVkMEKPV4nu75WynQ39-PwJUdVIyyiB6EN6hYEVHjE9Ztc71qPR2AxqcDsH_5wIQFVnkLorg_zLg7FlA9JJJEB0P4eHLgJu0M3U36m36F8fLznoF9m5j_zDiUdNrEaoCWgSyR55ccodp-gOz7_ja_VRHNq3cO8fQeCISbme0Z8gL8sprHZaqX2qSHkKi4DudhsTd82Ch43WMiSzSs9Vt9prGPwMrHpV2AyuJwDld1V6aWI3pEs53cyoJdHZCKOW0I-Gfsec1KWOF_mw-bhQhGgNJOnb5Vu69A3W2wIudGOg_1I?testcase_id=6144103126663168 <style> .c1 { overflow: visible; -webkit-transform: translate(100px, 100px); } .c5 { overflow: scroll; position: fixed;</style> <script> var nodes = Array(); nodes[79] = document.createElement('thead'); document.documentElement.appendChild(nodes[79]); nodes[85] = document.createElement('i'); nodes[79].appendChild(nodes[85]); nodes[87] = document.createElement('blockquote'); nodes[87].setAttribute('class', 'c5'); setTimeout("try { nodes[79].setAttribute('class', 'c1'); } catch(e) {}"); nodes[85].appendChild(nodes[87]); </script> Issue filed automatically. See https://dev.chromium.org/Home/chromium-security/bugs/reproducing-clusterfuzz-bugs for more information.
,
Jan 26 2017
Reduced test case:
<table>
<tr id="tr">
<td style="position: fixed"></td>
</tr>
</table>
<script>
setTimeout(function() {
tr.style.transform = 'translateX(100px)';
}, 0);
</script>
,
Jan 26 2017
The following assumption of no transform between an object and its container is incorrect:
if (skipInfo.ancestorSkipped()) {
// There can't be a transform between paintInvalidationContainer and
// ancestorToStopAt, because transforms create containers, so it should be
// safe to just subtract the delta between the ancestor and
// ancestorToStopAt.
adjustmentForSkippedAncestor =
-ancestorToStopAt->offsetFromAncestorContainer(container);
}
For example:
- fixed-position under non-block transformed object;
- float under transformed inline.
,
Apr 25 2017
,
May 17 2017
,
Jun 27 2017
ClusterFuzz testcase 5893196799541248 is flaky and no longer reproduces, so closing issue. If this is incorrect, please add ClusterFuzz-Wrong label and re-open the issue. |
|||||
►
Sign in to add a comment |
|||||
Comment 1 by brajkumar@chromium.org
, Jan 20 2017Components: Blink>Layout
Labels: Test-Predator-Wrong
Owner: wangxianzhu@chromium.org
Status: Assigned (was: Untriaged)