Skip to content

Commit c61110e

Browse files
committed
Use a specified value
1 parent 3f854dd commit c61110e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

fixtures/attribute-behavior/AttributeTableSnapshot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4826,9 +4826,9 @@
48264826
## `hidden` (on `<div>` inside `<div>`)
48274827
| Test Case | Flags | Result |
48284828
| --- | --- | --- |
4829-
| `hidden=(string)`| (changed)| `<boolean: true>` |
4829+
| `hidden=(string)`| (changed)| `"until-found"` |
48304830
| `hidden=(empty string)`| (changed)| `<boolean: true>` |
4831-
| `hidden=(array with string)`| (changed)| `<boolean: true>` |
4831+
| `hidden=(array with string)`| (changed)| `"until-found"` |
48324832
| `hidden=(empty array)`| (changed)| `<boolean: true>` |
48334833
| `hidden=(object)`| (changed)| `<boolean: true>` |
48344834
| `hidden=(numeric string)`| (changed)| `<boolean: true>` |

fixtures/attribute-behavior/src/attributes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ const attributes = [
887887
read: getSVGProperty('height'),
888888
overrideStringValue: '100%',
889889
},
890-
{name: 'hidden'},
890+
{name: 'hidden', overrideStringValue: 'until-found'},
891891
{name: 'high', tagName: 'meter'},
892892
{
893893
name: 'horiz-adv-x',

0 commit comments

Comments
 (0)