Changeset 273782 in webkit
- Timestamp:
- Mar 2, 2021, 6:23:46 PM (6 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 3 added
- 3 deleted
- 7 edited
-
ChangeLog (modified) (1 diff)
-
http/tests/history/popstate-fires-with-pending-requests.html (modified) (1 diff)
-
http/tests/history/replacestate-post-to-get-2.html (modified) (1 diff)
-
http/tests/history/replacestate-post-to-get.html (modified) (1 diff)
-
http/tests/history/resources/replacestate-current.php (deleted)
-
http/tests/history/resources/replacestate-current.py (added)
-
http/tests/history/resources/replacestate-forward-back.php (deleted)
-
http/tests/history/resources/replacestate-forward-back.py (added)
-
http/tests/history/resources/slow-image.php (deleted)
-
http/tests/history/resources/slow-image.py (added)
-
http/tests/inspector/page/resources/slow-test-page.html (modified) (1 diff)
-
http/tests/navigation/page-cache-pending-image-load-cache-partition.html (modified) (1 diff)
-
http/tests/navigation/page-cache-pending-image-load.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r273781 r273782 1 2021-03-02 Chris Gambrell <cgambrell@apple.com> 2 3 [LayoutTests] Convert http/tests/history convert PHP to Python 4 https://bugs.webkit.org/show_bug.cgi?id=222614 5 <rdar://problem/74946423> 6 7 Reviewed by Jonathan Bedard. 8 9 * http/tests/history/popstate-fires-with-pending-requests.html: 10 * http/tests/history/replacestate-post-to-get-2.html: 11 * http/tests/history/replacestate-post-to-get.html: 12 * http/tests/history/resources/replacestate-current.php: Removed. 13 * http/tests/history/resources/replacestate-current.py: Added. 14 * http/tests/history/resources/replacestate-forward-back.php: Removed. 15 * http/tests/history/resources/replacestate-forward-back.py: Added. 16 * http/tests/history/resources/slow-image.php: Removed. 17 * http/tests/history/resources/slow-image.py: Added. 18 * http/tests/inspector/page/resources/slow-test-page.html: 19 * http/tests/navigation/page-cache-pending-image-load-cache-partition.html: 20 * http/tests/navigation/page-cache-pending-image-load.html: 21 1 22 2021-03-02 Chris Gambrell <cgambrell@apple.com> 2 23 -
trunk/LayoutTests/http/tests/history/popstate-fires-with-pending-requests.html
r190505 r273782 16 16 17 17 var slowImage = document.createElement('img'); 18 slowImage.src = 'resources/slow-image.p hp';18 slowImage.src = 'resources/slow-image.py'; 19 19 document.body.appendChild(slowImage); 20 20 -
trunk/LayoutTests/http/tests/history/replacestate-post-to-get-2.html
r120167 r273782 21 21 </head> 22 22 <body onload="test()"> 23 <form id="testForm" action="resources/replacestate-forward-back.p hp" method="POST">23 <form id="testForm" action="resources/replacestate-forward-back.py" method="POST"> 24 24 </form> 25 25 </body> -
trunk/LayoutTests/http/tests/history/replacestate-post-to-get.html
r120167 r273782 15 15 </head> 16 16 <body onload="test()"> 17 <form id="testForm" action="resources/replacestate-current.p hp" method="POST">17 <form id="testForm" action="resources/replacestate-current.py" method="POST"> 18 18 </form> 19 19 </body> -
trunk/LayoutTests/http/tests/inspector/page/resources/slow-test-page.html
r188059 r273782 9 9 <body> 10 10 <!-- Delay the onload event using a slow image --> 11 <img src="http://localhost:8000/history/resources/slow-image.p hp" />11 <img src="http://localhost:8000/history/resources/slow-image.py" /> 12 12 </body> 13 13 </html> -
trunk/LayoutTests/http/tests/navigation/page-cache-pending-image-load-cache-partition.html
r268400 r273782 32 32 // Slow loading image. 33 33 var slowImage = new Image(); 34 slowImage.src = "/history/resources/slow-image.p hp";34 slowImage.src = "/history/resources/slow-image.py"; 35 35 document.body.appendChild(slowImage); 36 36 }, 0); -
trunk/LayoutTests/http/tests/navigation/page-cache-pending-image-load.html
r268400 r273782 31 31 // Slow loading image. 32 32 var slowImage = new Image(); 33 slowImage.src = "/history/resources/slow-image.p hp";33 slowImage.src = "/history/resources/slow-image.py"; 34 34 document.body.appendChild(slowImage); 35 35 }, 0);
Note:
See TracChangeset
for help on using the changeset viewer.