-
Notifications
You must be signed in to change notification settings - Fork 3k
Closed
Labels
compatStandard is not web compatible or proprietary feature needs standardizingStandard is not web compatible or proprietary feature needs standardizingtopic: rendering
Description
What is the issue with the HTML Standard?
Gecko has a webcompat issue (https://bugzilla.mozilla.org/show_bug.cgi?id=1951068) about <iframe frameborder=none>
, which in Gecko and per spec results in the default iframe border being shown. In WebKit and Chromium, no border is shown.
The spec has:
The following CSS rules are expected to apply as presentational hints:
iframe[frameborder='0'], iframe[frameborder=no i] { border: none; }
https://html.spec.whatwg.org/#attributes-for-embedded-content-and-images
WebKit and Chromium parse the value as an HTML signed integer and remove the border (via preshint) if the parsed value was zero (or error), as far as I can tell.
It seems to me the spec and Gecko should align with WebKit/Chromium.
Metadata
Metadata
Assignees
Labels
compatStandard is not web compatible or proprietary feature needs standardizingStandard is not web compatible or proprietary feature needs standardizingtopic: rendering