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

Side by Side Diff: third_party/WebKit/LayoutTests/plugins/plugin-reload-data.html

Issue 1866153002: Don't persist plugins across reattach for widget updates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script>
3 if (window.testRunner) {
4 testRunner.dumpAsText();
5 testRunner.waitUntilDone();
6
7 onload = () => {
8 var object = document.querySelector("object");
9 object.setAttribute("data", "data:text/plain,second");
10 requestAnimationFrame(() => { testRunner.notifyDone(); });
11 };
12 } else {
13 document.write("Needs to be run as a layout test.");
14 }
15 </script>
16 <object data="data:text/plain,first" type="application/x-blink-test-plugin" loga rgs="true"></object>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698