File tree Expand file tree Collapse file tree
packages/@glimmer/runtime/lib Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,10 +6,8 @@ import type {
66 SimpleDocument ,
77 SimpleElement ,
88} from '@glimmer/interfaces' ;
9- import { NS_SVG } from '@glimmer/constants' ;
109import { castToSimple } from '@glimmer/debug-util' ;
1110
12- import { applySVGInnerHTMLFix } from '../compat/svg-inner-html-fix' ;
1311import { applyTextNodeMergingFix } from '../compat/text-node-merging-fix' ;
1412import { DOMOperations } from './operations' ;
1513
@@ -40,11 +38,6 @@ appliedTreeConstruction = applyTextNodeMergingFix(
4038 doc ,
4139 appliedTreeConstruction
4240) as typeof TreeConstruction ;
43- appliedTreeConstruction = applySVGInnerHTMLFix (
44- doc ,
45- appliedTreeConstruction ,
46- NS_SVG
47- ) as typeof TreeConstruction ;
4841
4942export const DOMTreeConstruction = appliedTreeConstruction ;
5043export type DOMTreeConstruction = TreeConstruction ;
Original file line number Diff line number Diff line change @@ -5,10 +5,8 @@ import type {
55 SimpleElement ,
66 SimpleNode ,
77} from '@glimmer/interfaces' ;
8- import { NS_SVG } from '@glimmer/constants' ;
98import { castToSimple } from '@glimmer/debug-util' ;
109
11- import { applySVGInnerHTMLFix } from '../compat/svg-inner-html-fix' ;
1210import { applyTextNodeMergingFix } from '../compat/text-node-merging-fix' ;
1311import { BLACKLIST_TABLE , DOMOperations } from './operations' ;
1412
@@ -93,7 +91,6 @@ export class DOMChangesImpl extends DOMOperations implements GlimmerTreeChanges
9391let helper = DOMChangesImpl ;
9492
9593helper = applyTextNodeMergingFix ( doc , helper ) as typeof DOMChangesImpl ;
96- helper = applySVGInnerHTMLFix ( doc , helper , NS_SVG ) as typeof DOMChangesImpl ;
9794
9895export const DOMChanges = helper ;
9996export { DOMTreeConstruction } from './api' ;
You can’t perform that action at this time.
0 commit comments