
Also add a test, this checks nested Shadow DOM and <content> with and without select. R=ojan@chromium.org Review URL: https://codereview.chromium.org/725763003
26 lines
570 B
Plaintext
26 lines
570 B
Plaintext
<import src="../../framework/sky-element/sky-element.sky" as="SkyElement" />
|
|
<template>
|
|
<style>
|
|
:host {
|
|
background-color: #F6F6F6;
|
|
padding: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.input-text {
|
|
margin-left: 8px;
|
|
}
|
|
</style>
|
|
<span class="input-icon">
|
|
<img src="/sky/examples/flights/images/magnifying-glass.png" style="width: 16px">
|
|
</span>
|
|
<span class="input-text"><t>flights today to dc by price</t></span>
|
|
</template>
|
|
<script>
|
|
SkyElement({
|
|
name: "app-search-input"
|
|
});
|
|
</script>
|