summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/url_pattern/url_pattern_result.idl
blob: 76e037aedf8c939e1c9240bc22096975393880da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://wicg.github.io/urlpattern/
dictionary URLPatternResult {
  URLPatternInput input;
  URLPatternComponentResult protocol;
  URLPatternComponentResult username;
  URLPatternComponentResult password;
  URLPatternComponentResult hostname;
  URLPatternComponentResult port;
  URLPatternComponentResult pathname;
  URLPatternComponentResult search;
  URLPatternComponentResult hash;
};