Unverified Commit eb1fd786 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

Roll engine to 3405e23a32af4ea3655e5d1a78955066b2573331 (#16755)

* update engine version, ignore scopesRoute and namesRoute flags until framework support is added
parent 7b163c7c
3cc8d82895eaaddc52df166ceb0e5d7c3cc40588
3405e23a32af4ea3655e5d1a78955066b2573331
......@@ -421,6 +421,10 @@ void _defineTests() {
),
));
// TODO(jonahwilliams): remove when rolling edge semantic support for framework.
final List<SemanticsFlag> flags = SemanticsFlag.values.values
.where((SemanticsFlag flag) => flag != SemanticsFlag.scopesRoute && flag != SemanticsFlag.namesRoute)
.toList();
final TestSemantics expectedSemantics = new TestSemantics.root(
children: <TestSemantics>[
new TestSemantics.rootChild(
......@@ -429,7 +433,7 @@ void _defineTests() {
new TestSemantics.rootChild(
id: 2,
rect: TestSemantics.fullScreen,
flags: SemanticsFlag.values.values.toList(),
flags: flags,
),
]
),
......
......@@ -473,12 +473,15 @@ void main() {
obscured: true,
)
);
// TODO(jonahwilliams): remove when adding engine support for edge semantics
final List<SemanticsFlag> flags = SemanticsFlag.values.values
.where((SemanticsFlag flag) => flag != SemanticsFlag.scopesRoute && flag != SemanticsFlag.namesRoute)
.toList();
final TestSemantics expectedSemantics = new TestSemantics.root(
children: <TestSemantics>[
new TestSemantics.rootChild(
rect: TestSemantics.fullScreen,
flags: SemanticsFlag.values.values.toList(),
flags: flags,
),
],
);
......
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