summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/largest-contentful-paint/resources/slow-style-change.py
blob: 780d5736c49065f1ea4140cfb8375aeb1005f039 (plain)
1
2
3
4
5
6
7
8
9
import time

def main(request, response):
    time.sleep(1)
    return [ ("Content-Type", "text/css")], """
    #text {
      font-size: 4em;
    }
    """