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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/security/local-image-from-remote-whitelisted.html

Issue 2593263003: Use a non-replaced inline container for image alt text (Closed)
Patch Set: Use a non-replaced inline container for image alt text Created 3 years, 8 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
Index: third_party/WebKit/LayoutTests/http/tests/security/local-image-from-remote-whitelisted.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/local-image-from-remote-whitelisted.html b/third_party/WebKit/LayoutTests/http/tests/security/local-image-from-remote-whitelisted.html
index 42124642a6c456f501e61e54222cffe6945dda74..3a305a81eb7327d1e16933df2da4e26c300b14c5 100644
--- a/third_party/WebKit/LayoutTests/http/tests/security/local-image-from-remote-whitelisted.html
+++ b/third_party/WebKit/LayoutTests/http/tests/security/local-image-from-remote-whitelisted.html
@@ -10,6 +10,7 @@ testRunner.addOriginAccessWhitelistEntry('http://127.0.0.1:8000', 'file', '', tr
var localImageLocation = testRunner.pathToLocalResource('file:///tmp/LayoutTests/http/tests/security/resources/compass.jpg');
var localImageElement = document.createElement('img');
+localImageElement.style.display = "block";
localImageElement.src = localImageLocation;
document.body.appendChild(localImageElement);

Powered by Google App Engine
This is Rietveld 408576698