188 multiple?: boolean,
189 type?: string,
190▶ src?: string | Blob | MediaSource | MediaStream, // TODO: Response
191 srcSet?: string,
192 loading?: 'eager' | 'lazy',
· · ·
481 const lower = scriptType.toLowerCase();
482 // Special non-MIME keywords recognized by the HTML spec
483▶ // TODO: May be fine to also not warn about having these types be parsed as "parser-inserted"
484 if (
485 lower === 'module' ||
· · ·
534 let hostContextProd: HostContextProd;
535 if (__DEV__) {
536▶ // TODO: take namespace into account when validating.
537 const hostContextDev: HostContextDev = hostContext as any;
538 validateDOMNesting(type, hostContextDev.ancestorInfo);
· · ·
671 if (!didWarnForClone) {
672 didWarnForClone = true;
673▶ // TODO: Once we have the ability to avoid cloning the root, suggest an absolutely
674 // positioned ViewTransition instead as the solution.
675 console.warn(
· · ·
868 ? callback =>
869 localPromise.resolve(null).then(callback).catch(handleErrorInNextTick)
870▶ : scheduleTimeout; // TODO: Determine the best fallback here.
871
872function handleErrorInNextTick(error: any) {
+ 30 more matches in this file