| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
// MathMLElement, HTMLElement and SVGElement are handling "nonce" the same
// way.```suggestion
// MathMLElement, HTMLElement and SVGElement handle "nonce" the same way.
```
// SVGElement, HTMLElement and MathMLElement are handling "nonce" the same
// way.```suggestion
// MathMLElement, HTMLElement and SVGElement handle "nonce" the same way.
```
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
// MathMLElement, HTMLElement and SVGElement are handling "nonce" the same
// way.```suggestion
// MathMLElement, HTMLElement and SVGElement handle "nonce" the same way.
```
Done
// SVGElement, HTMLElement and MathMLElement are handling "nonce" the same
// way.```suggestion
// MathMLElement, HTMLElement and SVGElement handle "nonce" the same way.
```
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
1 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: third_party/blink/renderer/core/svg/svg_element.cc
Insertions: 1, Deletions: 2.
@@ -493,8 +493,7 @@
}
void SVGElement::ParseAttribute(const AttributeModificationParams& params) {
- // SVGElement, HTMLElement and MathMLElement are handling "nonce" the same
- // way.
+ // SVGElement, HTMLElement and MathMLElement handle "nonce" the same way.
if (params.name == html_names::kNonceAttr) {
if (params.new_value != g_empty_atom)
setNonce(params.new_value);
```
```
The name of the file: third_party/blink/renderer/core/mathml/mathml_element.cc
Insertions: 1, Deletions: 2.
@@ -127,8 +127,7 @@
}
void MathMLElement::ParseAttribute(const AttributeModificationParams& param) {
- // MathMLElement, HTMLElement and SVGElement are handling "nonce" the same
- // way.
+ // MathMLElement, HTMLElement and SVGElement handle "nonce" the same way.
if (param.name == html_names::kNonceAttr) {
if (param.new_value != g_empty_atom) {
setNonce(param.new_value);
```
Align MathML nonce implementation with SVG/HTML.
See https://github.com/whatwg/html/pull/12416 and
https://html.spec.whatwg.org/multipage/urls-and-fetching.html#nonce-attributes
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |