Commit fb635da2 authored by Ian Kilpatrick's avatar Ian Kilpatrick Committed by Commit Bot

Remove NOTREACHED in layout_frame_set.h

This was introduced in:
https://chromium-review.googlesource.com/c/chromium/src/+/2099322
It turns out this was reachable!

Bug: 1064432
Change-Id: I742f706434cd45ea8c30505e565b193921c3f6ea
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2136880
Commit-Queue: Koji Ishii <kojii@chromium.org>
Reviewed-by: default avatarKoji Ishii <kojii@chromium.org>
Cr-Commit-Position: refs/heads/master@{#756566}
parent efccf473
......@@ -135,7 +135,6 @@ class LayoutFrameSet final : public LayoutBox {
MinMaxSizes PreferredLogicalWidths() const override { return MinMaxSizes(); }
MinMaxSizes ComputeIntrinsicLogicalWidths() const final {
NOTREACHED();
return MinMaxSizes();
}
......
<!DOCTYPE html>
<link rel="help" href="https://crbug.com/1064432">
<div id=target style="float: left;"></div>
<script>
document.getElementById('target').appendChild(document.createElement('frameset'));
</script>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment