Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(252)

Unified Diff: Tools/GardeningServer/ui/ct-test-output.html

Issue 559843006: SheriffOMatic: Add ct-popout-iframe and switch test output iframes to use it. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address comments Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Tools/GardeningServer/ui/ct-results-panel.html ('k') | Tools/GardeningServer/ui/test/ct-popout-iframe.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/ui/ct-test-output.html
diff --git a/Tools/GardeningServer/ui/ct-test-output.html b/Tools/GardeningServer/ui/ct-test-output.html
index 21b312d1bfa097672cef226779b7b4e7d6381a63..a157e865de97cb8078e850a707ef9b74fdaf07af 100644
--- a/Tools/GardeningServer/ui/ct-test-output.html
+++ b/Tools/GardeningServer/ui/ct-test-output.html
@@ -4,18 +4,15 @@ Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
- <polymer-element name="ct-test-output" attributes="type url">
+<link rel="import" href="ct-popout-iframe.html">
+
+<polymer-element name="ct-test-output" attributes="type url">
<template>
<style>
.result {
border: 1px solid gray;
line-height: 0;
}
- iframe {
- border: none;
- width: 100%;
- height: 400px;
- }
img {
width: 100%;
}
@@ -27,7 +24,7 @@ found in the LICENSE file.
<img src="{{url}}">
</template>
<template if="{{type == _kTextType}}">
- <iframe src="{{url}}"></iframe>
+ <ct-popout-iframe src="{{url}}"></ct-popout-iframe>
</template>
<template if="{{type == _kAudioType}}">
<audio controls src="{{url}}"></audio>
« no previous file with comments | « Tools/GardeningServer/ui/ct-results-panel.html ('k') | Tools/GardeningServer/ui/test/ct-popout-iframe.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698